Found 6704 Articles for Javascript

What is Bitwise XOR Assignment Operator (^=) in JavaScript?

Abhinaya
Updated on 08-Jan-2020 07:51:50

197 Views

It performs XOR operation on the right operand with the left operand and assigns the result to the left operand.ExampleYou can try to run the following code to learn how to work with Bitwise XOR Assignment OperatorLive Demo                    var a = 2;   // Bit presentation 10          var b = 3;   // Bit presentation 11          document.write("(a ^= b) => ");          document.write(a ^= b);          

What is Bitwise OR Assignment Operator (|=) in JavaScript?

Anvi Jain
Updated on 13-Jun-2020 09:25:03

160 Views

It performs OR operation on the right operand with the left operand and assigns the result to the left operand.ExampleYou can try to run the following code to learn how to work with Bitwise OR Assignment Operator −                    var a = 2; // Bit presentation 10          var b = 3; // Bit presentation 11          document.write("(a |= b) => ");          document.write(a |= b);          

What is the "double tilde" (~~) operator in JavaScript?

Nitya Raut
Updated on 13-Jun-2020 09:22:07

2K+ Views

The “double tilde” (~~) operator is a double NOT Bitwise operator. Use it as a substitute for Math.floor(), since it’s faster.ExampleYou can try to run the following code to learn about double tilde operator −                    var a = 2;          var b,c, d;          b = ~~a;          c = Math.floor(a);          d = ~~b=== c;          document.write(b);          document.write(""+c);          document.write(""+d); // They are equal          

What is Addition Operator (+) in JavaScript?

Anvi Jain
Updated on 13-Jun-2020 08:19:52

178 Views

The addition operator is used to add two operands.ExampleYou can try to run the following code to work with Addition Operator −                    var a = 33;          var b = 10;          document.write("a + b = ");          result =a + b;          document.write(result);          

What is Addition Assignment Operator (+=) in JavaScript?

Nitya Raut
Updated on 13-Jun-2020 08:19:32

120 Views

It adds the right operand to the left operand and assigns the result to the left operand.ExampleYou can try to run the following code to learn how to work with Addition Assignment Operator −                    var a = 33;          var b = 10;          document.write("Value of a => (a += b) => ");          result = (a += b);          document.write(result);          document.write(linebreak);          

What is Multiplication Operator (*) in JavaScript?

Abhishek
Updated on 08-Nov-2022 06:37:42

334 Views

In this tutorial, we will learn about the multiplication operator (*) in JavaScript. The multiplication operator is a binary operator which requires at least two operands to operate on. The multiplication operator simply multiplies the left operand with the right operand, or you can say that it simply increases the value of the left operand with the same value till the value of the right operand becomes zero. The example below will explain you everything − 3 * 2 = 6 OR 3 + 3 = 6 5 * 3 = 15 OR 5 + 5 + 5 = 15 ... Read More

What is Modulus Operator (%) in JavaScript?

Abhishek
Updated on 25-Nov-2022 08:07:45

976 Views

In this tutorial, we will learn about the modulus operator in JavaScript. In some languages, the modulus operator is also known as the remainder operator. The remainder operator and the modulus operator both are used to get the remainder of an integer when it is divided by some other integer, but they are different from each other in case of signs of the remainder whether it has to be positive or negative that is returned after the division. In the expression a % b, a is called dividend, while b is known as divisor. In case of the modulo, the ... Read More

How to redirect website after certain amount of time without JavaScript?

Anvi Jain
Updated on 08-Jan-2020 07:06:18

4K+ Views

To redirect from an HTML page, use the META Tag. With this, use the http-equiv attribute to provide an HTTP header for the value of the content attribute. The value of the content is the number of seconds; you want the page to redirect after.Through this, you can automatically redirect your visitors to a new homepage. Set the content attribute to 0, if you want it to load immediately.ExampleThe following is an example of redirecting current page to another page after 2 seconds.Live Demo           Redirection                     This page will redirect in 2 seconds.    

How to use JavaScript to redirect a webpage after 5 seconds?

Abhishek
Updated on 08-Sep-2023 23:14:24

33K+ Views

In this tutorial, we learn to use JavaScript to redirect a webpage after 5 seconds. To redirect a webpage after 5 seconds, use the setInterval() method to set the time interval. Add the webpage in window.location.href object. As we know, whenever we need to call a function or some block of code after a specific delay of time we use the setTimeout() and the setInterval() methods of JavaScript. Lts look at the use of these methods to redirect a web page by 5 seconds. To redirect a page we will use the document.location.href or window.location.href object of JavaScript as shown ... Read More

What is unsigned Right Shift Operator (>>>) in JavaScript?

Nancy Den
Updated on 13-Jun-2020 07:41:03

377 Views

This operator is just like the >>operator, except that the bits shifted in on the left are always zero i.e. xeroes are filled in from the left.ExampleYou can try to run the following code to learn how to work with unsigned right shift operator −                    var a =-14;          var b =2; // Shift right two bits          document.write("(a >>> b) => ");          result =(a >>> b);          document.write(result);          

Advertisements