Define function with arrow notation



examples/basic/add_function.js
const sum = (a, b) => a + b;

console.log( sum(2, 3) )

5