DEV Community

Discussion on: What's your favorite addition to ES2015+

Collapse
 
prachurjya15 profile image
Prachurjya Basistha

The easy arrow function syntax to make small function really short and less cramy like eg:

 const square= num => num*num 

instead of old pre ES-6 syntax