“Funkcje strzałek w ES6” Kod odpowiedzi

Funkcje strzałek w ES6

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

Podstawowa funkcja strzałek JavaScript

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

Jak zrobić spółkę funkcji JavaScript

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

funkcja strzałki 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

reguły JavaScript funkcji strzałki

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

Funkcje strzałek JavaScript

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

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

Odpowiedzi podobne do “Funkcje strzałek w ES6”

Pytania podobne do “Funkcje strzałek w ES6”

Więcej pokrewnych odpowiedzi na “Funkcje strzałek w ES6” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu