how to call an arrow function in javascript code example

Example 1: arrow function javascript

//If body has single statement
let myFunction = (arg1, arg2, ...argN) => expression

//for multiple statement
let myFunction = (arg1, arg2, ...argN) => {
    statement(s)
}
//example
let hello = (arg1,arg2) => "Hello " + arg1 + " Welcome To "+ arg2;
console.log(hello("User","Grepper"))
//Start checking js code on chrome inspect option

Example 2: arrow function javascript

// Traditional Function
function (param) {
  var a = param * 3;
  return a;
}

//Arrow Function
(a, b) => {
  let c = (a * b) + 3;
  return c;
}