call arrow function javascript code example
Example 1: arrow function javascript
function Welcome(){
console.log("Normal function");
}
const Welcome = () => {
console.log("Normal function");
}
Example 2: () = javascript
function sum(a, b) {
return a + b;
}
let sum = (a, b) => a + b;
Example 3: arrow function javascript
let myFunction = (arg1, arg2, ...argN) => expression
let myFunction = (arg1, arg2, ...argN) => {
statement(s)
}
let hello = (arg1,arg2) => "Hello " + arg1 + " Welcome To "+ arg2;
console.log(hello("User","Grepper"))
Example 4: how to make javascript function consise
multiplyfunc = (a, b) => { return a * b; }
Example 5: arrow function javascript
let myFunction = () => {
}