export function with argument arrow function code example
Example 1: arrow function map js
const exampleArray = ['aa','bbc','ccdd'];
console.log(exampleArray.map(a => a.length));
//Would print out [2,3,4]
Example 2: es6 functions
const add = (n1, n2) => n1 + n2