“Функции стрелы в ES6” Ответ

Функции стрелы в ES6

let func = (a) => {}         // parentheses optional with one parameter
let func = (a, b, c) => {} // parentheses required with multiple parameters
Outrageous Ostrich

Функция базовой стрелки JavaScript

const power = (base, exponent) => {
    let result = 1;
    for (let count = 0; count < exponent; count++) {
      result *= base;
    }
    return result;
  };
The Arborist

Как сделать функцию JavaScript

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

Функция стрелки JavaScript

const power = (base, exponent) => {
  let result = 1;
  for (let count = 0; count < exponent; count++) {
    result *= base;
  }
  return result;
};

//if the function got only one parameter

const square1 = (x) => { return x * x; };
const square2 = x => x * x;

// empty parameter

const horn = () => {
  console.log("Toot");
};
Creepy Gábor

Функция стрелки JavaScript Правила

const add3 = (num1, num2, num3) => return num1 + num2 + num3;
Fantastic Falcon

Функции стрелки JavaScript

// Traditional Function Expression
var add = function(a,b){
  return a + b;
}

// Arrow Function Expression
var arrowAdd = (a,b) => a + b;
Cooperative Chimpanzee

Ответы похожие на “Функции стрелы в ES6”

Вопросы похожие на “Функции стрелы в ES6”

Больше похожих ответов на “Функции стрелы в ES6” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования