File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11# Operators
22
3- You can apply mathematic operations to numbers using some basic operators like:
3+ You can apply mathematic operations to numbers using some basic operators like:
44
55* ** Addition** : ``` c = a + b ```
66* ** Subtraction** : ``` c = a - b ```
77* ** Multiplication** : ``` c = a * b ```
88* ** Division** : ``` c = a / b ```
99
10- You can use parentheses just like in math to separate calcul execution : ``` c = (a / b) + d ```
10+ You can use parentheses just like in math to separate and group expressions : ``` c = (a / b) + d ```
1111
1212
1313---
1414
15- Create a variable ` x ` which equals to the addition of ` a ` and ` b ` divided by ` c ` and finally multiplicated by ` d ` .
15+ Create a variable ` x ` equal to the sum of ` a ` and ` b ` divided by ` c ` and finally multiplied by ` d ` .
1616
1717``` js
1818var a = 2034547 ;
You can’t perform that action at this time.
0 commit comments