JavaScript Operators
Operators in javascript
We can use all the operators in Js just like any other programming language. So, let's just walk through each one by one.
//variables
let a=10;
let b=3;
//addition
console.log(a+b);
/*result : 3 or if one of each value was a ...
codeminions.hashnode.dev2 min read