JS Basic
JS Objects
JS Advanced
| JS Operators |
|
= is used to assign values. + is used to add values. The assignment operator = is used to assign values to JavaScript variables. The arithmetic operator + is used to add values together.
The value of x, after the execution of the statements above is 7. JavaScript Arithmetic OperatorsArithmetic operators are used to perform arithmetic between variables and/or values. Given that y=5, the table below explains the arithmetic operators:
JavaScript Assignment OperatorsAssignment operators are used to assign values to JavaScript variables. Given that x=10 and y=5, the table below explains the assignment operators:
The + Operator Used on StringsThe + operator can also be used to add string variables or text values together. To add two or more string variables together, use the + operator.
After the execution of the statements above, the variable txt3 contains "What a verynice day". To add a space between the two strings, insert a space into one of the strings:
or insert a space into the expression:
After the execution of the statements above, the variable txt3 contains: "What a very nice day" Adding Strings and NumbersThe rule is: If you add a number and a string, the result will be a string! Examplex=5+5; |
JS Operators