Answers for "equal arrow javascript"

2

how to make javascript function consise

multiplyfunc = (a, b) => { return a * b; }
Posted by: Guest on April-04-2020
0

equal arrow javascript

// Traditional Function
function (a){
  return a + 100;
}

// Arrow Function Break Down

// 1. Remove the word "function" and place arrow between the argument and opening body bracket
(a) => {
  return a + 100;
}

// 2. Remove the body brackets and word "return" -- the return is implied.
(a) => a + 100;

// 3. Remove the argument parentheses
a => a + 100;
Posted by: Guest on November-07-2020

Browse Popular Code Answers by Language