JavaScript operators

Operator = is used for assignment.

Operator + is used to add value.

Operator = is used to assign values to JavaScript variables.

The arithmetic operator + is used to add values.


Example

    php中文网(php.cn) 

点击按钮计算 x 的值.

Run the program and try it


JavaScript Arithmetic Operators

Arithmetic operators are used to perform arithmetic operations between variables and/or values.

Given y=5, the following table explains these arithmetic operators:

##% Find the remainder (keep the integer) x=y%2 x=1 ++ accumulation x=++y x=6 -- Decreasing x=--y x=4
Operator Description Example Result
+ Add x=y+2 x=7
- minus x=y-2 x=3
* Multiply x=y*2 x=10
/ divide x=y/2 x=2.5

JavaScript assignment operator

The assignment operator is used to assign values to JavaScript variables.

Given x=10 and y=5, the following table explains the assignment operators:




+ operator for strings

+ operator is used to convert a text value or String variables are added together (concatenated).

To connect two or more string variables, please use the + operator.

Example

If you need to connect two or more string variables, please use the + operator:

    php中文网(php.cn) 

点击按钮创建及增加字符串变量。

Run the program and try it


To add spaces between two strings, you need to insert spaces into a string:

    php中文网(php.cn) 

点击按钮创建及增加字符串变量。

Run the program and try it


Or insert spaces into the expression:

    php中文网(php.cn) 

点击按钮创建及增加字符串变量。

Run the program and try it


Add strings and numbers

Add two numbers and return the sum of the added numbers. If a number is added to a string, a string is returned. The following example:

Example

    php中文网(php.cn) 

点击按钮创建及增加字符串变量。

Rule: If you add a number to a string, the result will be a string!

Run the program and try it



Continuing Learning
||
php中文网(php.cn)

点击按钮计算 x 的值.

submit Reset Code
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!
Operation Symbol Example is equivalent to Result ##= += -= *= /= %=
x=y x=5
x+=y x=x+y x=15
x-=y x=x-y x=5
x*=y x=x*y x=50
x/=y x=x/y x=2
x%=y x=x%y x=0