Sunday, November 18, 2018

JavaScript Assignment

JavaScript Assignment Operators

Assignment operators assign values to JavaScript variables.


Operator                         Example                             Same As
=                                     x = y                                    x = y
+=                                  x += y                                  x = x + y
-=                                   x -= y                                   x = x - y
*=                                  x *= y                                   x = x * y
/=                                   x /= y                                    x = x / y
%=                                 x %= y                                 x = x % y
<<=                               x <<= y                                x = x << y
>>=                              x >>= y                                 x = x >> y
>>>=                           x >>>= y                                x = x >>> y
&=                               x &= y                                  x = x & y
^=                                x ^= y                                   x = x ^ y
|=                                x |= y                                     x = x | y
**=                            x **= y                                  x = x ** y



The **= operator is an experimental part of the ECMAScript 2016 proposal (ES7). It is not stable across browsers. Do not use it.



Assignment Examples

The = assignment operator assigns a value to a variable.

var x = 10;

The += assignment operator adds a value to a variable.


Assignment


var x = 10;
x += 5;


Share:

0 comments:

Post a Comment

Contact Form

Name

Email *

Message *

Popular Posts

Blog Archive

Blog Archive

Hassan.mosmer1@gmail.com