arrow function in JavaScript
what is arrow function in JavaScript?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bidyasagar MishraPosted Sep 20, 2019, 11:55 PM
JavaScript Arrow Functions
Arrow functions are not supported in IE11 or earlier.
"demo"
>Ankit KanojiaPosted Jan 9, 2021, 8:54 AM
Why choose Arrow function?
Rajanikant HawaldarPosted Sep 21, 2019, 2:35 AM
Chittaranjan SwainPosted Sep 21, 2019, 1:25 AM
Arrow functions were introduced in ES6.
this,arguments,super, ornew.targetkeywords. Arrow function expressions are ill suited as methods, and they cannot be used as constructors.'Hydrogen',
'Helium',
'Lithium',
'Beryllium'
];
console.log(materials.map(material => material.length));
// expected output: Array [8, 6, 7, 9]