JavaScript Operators
What operators are?
Operators are used to tell program what operations needed to perform with data
Example -
const a = 10;
const b = 20;
const sum = a + b;
Here using operators we assigned data to v
skullcoder.hashnode.dev3 min read