Please Subscribe My YouTube Channel

Monday, October 16, 2023

How To Make Transparent Dos Window

दोस्तों आज हम आपको बतायेगे की कमांड प्रांप्ट या डॉस की विंडो को ट्रांसपेरेंट कैसे बनाते हैं ?

कृपया हमारे चैनल  ITCI Computer Hardoi - YouTube  को सब्सक्राइब जरुर करें यंहा आपको मिलेगे सभी ट्रिक्स वीडियो और कंप्यूटर से सम्बन्धित सभी विडियो .

तो दोस्तों शुरू करते है :-

1 दोस्तों सबसे पहले आपको डॉस को ओपन करना है . (Window+R >>Cmd>>OK)
२. फिर आपको ctrl और शिफ्ट बटन को दबाये रखना है और माउस से स्क्रॉल बटन को up एंड डाउन करना है ,
आप देखेंगे की आपकी विंडो ट्रांसपेरेंट हो चुकी है .
धन्यवाद !!






यदि आपको  कोई समस्या आती है तो आप  पूरा विडियो देखने के लिए नीचे लिंक पर क्लिक करें .


ITCI Computer Institute Hardoi ITCI computer Center infotech computer

Shorthand Tips & Tricks of JavaScript

1. Assigning values to multiple variables

We can assign values to multiple variables in one line with array destructuring.

2. The Ternary operator

We can save 5 lines of code here with the ternary (conditional) operator.

3. Assigning a default value

We can use OR(||) short circuit evaluation to assign a default value to a variable in case the expected value is found falsy.

4. Remove duplicates from an Array

The Set object stores only unique elements. Therefore, we can create a Set from the given array of elements and then, convert the Set back to an array to get all unique elements.


5. AND(&&) Short circuit evaluation

If you are calling a function only if a variable is true, then you can use the AND(&&) short circuit as an alternative for this.

The AND(&&) short circuit shorthand is more useful in React when you want to conditionally render a component. For example:

6. Swap two variables

To swap two variables, we often use a third variable. We can swap two variables easily with array destructuring assignment.

7. Arrow Function


8. Template Literals

We normally use the + operator to concatenate string values with variables. With ES6 template literals, we can do it in a more simple way.

9. Multi-line String

For multiline strings, we normally use + operator with a new line escape sequence (\n). We can do it in an easier way by using backticks ( ` ).

10. Multiple condition checking

For multiple value matching, we can put all values in an array and use indexOf() method.

11. Object Property Assignment

If the variable name and object key name are the same then we can just mention the variable name in object literals instead of both key and value. JavaScript will automatically set the key same as the variable name and assign the value as the variable value.

12. String into a Number

There are built-in methods like parseInt and parseFloat available to convert a string to a number. We can also do this by simply providing a unary operator (+) in front of the string value.

13. Repeat a string multiple times

To repeat a string a specific number of times you can use a for loop. But using the repeat() method we can do it in a single line.

14. Exponent Power

We can use Math.pow() method to find the power of a number. There is a shorter syntax to do it with a double asterisk (**).

15. Double NOT bitwise operator (~~)

The double NOT bitwise operator is a substitute for Math.floor() method.

The double NOT bitwise operator approach only works for 32 bit integers i.e (2**31)-1 = 2147483647. So for any number higher than 2147483647 and less than 0, bitwise operator (~~) will give wrong results, so recommended to use Math.floor() in such case.

16. Find the max and min numbers in an array

We can use for loop to loop through each value of the array and find the max or min value. We can also use the Array.reduce() method to find the max and min number in the array.

But using the spread operator we can do it in a single line.

17. For loop

To loop through an array we normally use the traditional for loop. We can make use of the for…of loop to iterate through arrays. To access the index of each value we can use for…in loop.

We can also loop through object properties using for…in loop.


18. Merging of arrays

19. Remove properties from an object

To remove a property from an object we can use the delete operator, but to remove multiple properties at a time, we can use the Rest parameter with destructuring assignment.

20. Get character from string

21. Remove falsy values from Array

Zero (0) is considered to be a falsy value so it will be removed in both the cases. You can add an extra check for zero to keep it.

22. Create a random string token


Infotech Computer Institute (itcicomputerhardoi.blogspot.com)


Infotech Computer Institute: इंटरनेट से संबधित महत्वपूर्ण जानकारी (itcicomputerhardoi.blogspot.com)