Javascript: Regular Functions vs Arrow functions?
Motivation
wanted to understand how it actually works
Syntax
Regular functions
function test() {
console.log("test");
}
var test= function () {
console.log("testing normal functions");
}
Arrow Functions
let test= (x+y) => { console.log("tes...
hashcodehub.hashnode.dev1 min read