Adds the value of one numeric expression to another, or concatenates two strings.
Syntaxresult = expression1 + expression2;
console.log(1 + 1);
console.log('hello' + ' world');
console.log(1 + '1');
console.log('1' + 1);
Remarks
The types of the two expressions determine the behavior of the +
operator.
Microsoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4