JavaScript Operators
JavaScript Operators
1. What Are Operators? π€
An operator is a symbol that tells the program to perform an operation on values.
Example:
let result = 5 + 3;
Here:
5 and 3 β operands
+ β operator
T
javascriptoperators26.hashnode.dev4 min read