Alternative approaches in JavaScript
It's a short article demonstrating alternative ways of writing some of the tradition JavaScript codes.
The old of converting Number-Strings
let num = 10;
let newNum = num.toString();
let str = "10"
let strNum = Number(str)
The alternative way for ...
blogsfromrakesh.hashnode.dev1 min read