javascript
Operators in JavascriptjavascriptLevel1
Progress0%
Contents
Operators in Javascript
1 / 10
Introduction
Operators
An operator is a symbol that performs an operation on one or more values (called operands) and produces a result.
codejs
110 + 5 // + is the operator, 10 and 5 are operands, 15 is the resultJavaScript operators are grouped by what they do. This topic covers three categories: arithmetic, comparison, and logical.