Assignment Operators:-
Assignment operator’s variables या constant को values assign करने के लिए इस्तेमाल किया जाता है JavaScript में इसका बहुत इस्तेमाल किया जाता है।
Operator |
Example |
Results |
Meaning |
= |
x=y |
x=y |
ये operator right variable की वैल्यू को left variable को assign करती है |
+= |
x+=y |
x=x+y |
x और y की value को जोड़ कर पूरी value x को assign करना |
-= |
x-=y |
x=x-y |
x से y की value को घटा कर परिणाम x को assign करना |
*= |
x*=y |
x=x*y |
x को y से गुणा करके x को assign करना |
/= |
x/=y |
x=x/y |
x से y को divide करके परिणाम x को assign करना |
%= |
x%=y |
x=x%y |
x से y को divide करके आया हुआ reminder x को assign करना |
Assignment Operators:-
Assignment operator’s is used to assign values to variables or constants. It is used a lot in JavaScript.
Operator |
Example |
Results |
Meaning |
= |
x=y |
x=y |
This operator assigns the value of the right variable to the left variable. |
+= |
x+=y |
x=x+y |
Adding the values of x and y and assigning the entire value to x. |
-= |
x-=y |
x=x-y |
Subtracting the value of y from x and assigning the result to x |
*= |
x*=y |
x=x*y |
multiplying x by y and assigning x |
/= |
x/=y |
x=x/y |
dividing x by y and assigning the result to x |
%= |
x%=y |
x=x%y |
Assigning reminder to x obtained by dividing x by y |