javascript this in arrow function code example

Example 1: javascript arrow function

// Non Arrow (standard way)
let add = function(x,y) {
  return x + y;
}
console.log(add(10,20)); // 30

// Arrow style
let add = (x,y) => x + y;
console.log(add(10,20)); // 30;

// You can still encapsulate
let add = (x, y) => { return x + y; };

Example 2: arrow function map js

const exampleArray = ['aa','bbc','ccdd'];
console.log(exampleArray.map(a => a.length));
//Would print out [2,3,4]

Example 3: how to make javascript function consise

multiplyfunc = (a, b) => { return a * b; }

Example 4: javascript arrow function

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