How to use arrow function in JavaScript

3 Answers

0 votes
let afunction = (websites, webapps) => (websites + webapps)

console.log(afunction(4, 12));



/*

run:

16

*/

 



answered Oct 11, 2020 by avibootz
0 votes
afunction = () => "JavaScript";

console.log(afunction());



/*

run:

JavaScript

*/

 



answered Oct 11, 2020 by avibootz
0 votes
afunction = (s) => "JavaScript " + s;

console.log(afunction("Programming"));



/*

run:

JavaScript Programming

*/

 



answered Oct 11, 2020 by avibootz

Related questions

...