Top JavaScript Shorthands Techniques
Hello Everyone, in this article you will see Top JavaScript Shorthands Techniques to speed up your tasks
1. Declare more than one variable in one line
Normal method
let a = 1;
let b = 2;
let c = 3;
Short method
let a=1,b=2,c=3;
2. The Ternary Op...
mostafaamine.hashnode.dev2 min read