declare arrow function javascript code example

Example 1: arrow function javascript

const suma = (num1, num2) => num1+num2
console.log(suma(2,3));
//5

Example 2: 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 3: javascript arrow function

let errow = () => {
  //the code you want to return;
};
Or
let errow = ('paramiter') => {
//the code you want to return
}

Example 4: javascript arrow function

const welcome = () => {
	console.log("THIS IS A ARROW FUNCTION")
}