Arrow function VS function in JavaScript
ES5 has introduced the arrow function in JavaScript. There are some differences between normal function and arrow function. I will discuss the difference in this blog.
Syntax
Normal function syntax
function person (){
// code
}
Arrow function syntax
...
sahedthought.hashnode.dev2 min read