javascript
javascript
Operators in Javascript
Live
bolt
Level1
Progress0%

Operators in Javascript

CARD 1

Introduction

Login to report note issues for this section.

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 result

JavaScript operators are grouped by what they do. This topic covers three categories: arithmetic, comparison, and logical.