JavaScript Operators: The Basics You Need to Know
What Are Operators?
Operators perform operations on values.
let sum = 5 + 3; // + is an operator
They're symbols that tell JavaScript what to do with values.
Think of operators as instructions:
+ →
techsorcerer.hashnode.dev9 min read