Array Functions In ES5 we use functions as below: function my_fun(num){ return num+50; } console.log(my_fun(120)); From ES6 we have Arrow Functions as Below: const my_fun = (num1) =>{ return num1+50 ; } console.log(my_fun(50)); Without ...