Merge pull request #2341 from vsoni101/patch-1
Update article.md in section 2.8
This commit is contained in:
commit
0936245a87
1 changed files with 5 additions and 0 deletions
|
@ -106,6 +106,11 @@ alert(2 + 2 + '1' ); // "41" and not "221"
|
|||
|
||||
Here, operators work one after another. The first `+` sums two numbers, so it returns `4`, then the next `+` adds the string `1` to it, so it's like `4 + '1' = 41`.
|
||||
|
||||
```js run
|
||||
alert('1' + 2 + 2); // "122" and not "14"
|
||||
```
|
||||
Here, the first operand is a string, the compiler treats the other two operands as strings too. The `2` gets concatenated to `'1'`, so it's like `'1' + 2 = "12"` and `"12" + 2 = "122"`.
|
||||
|
||||
The binary `+` is the only operator that supports strings in such a way. Other arithmetic operators work only with numbers and always convert their operands to numbers.
|
||||
|
||||
Here's the demo for subtraction and division:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue