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 ...
Mar 31, 20222 min read208


