= 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.
Arithmetic operators are used to perform arithmetic between variables and/or values.
Given that y=5, the table below explains the arithmetic operators:
Assignment 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 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 "A Good DayTo start with".
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:
"A Good Day To start with"
The rule is: If you add a number and a string, the result will be a string!
Your Query was successfully sent!