SSSATYAM SHARMAinsatyamexxe.hashnode.dev00Arrow Functions in (JavaScript) Mar 15 · 3 min read · A Simpler Way to Write Functions When writing JavaScript, we often create small helper functions. Earlier we used the traditional function syntax, but modern JavaScript introduced arrow functions to mJoin discussion
JVJanardhan Vermainjavascript-function.hashnode.dev00Arrow Functions in JavaScript:Mar 14 · 3 min read · function add(a, b) { return a + b; } console.log(add(3,5)) // 8 See the code above? This is a normal small function, yes. In a big project, a number of functions are this small but useful too. DoeJoin discussion