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

Функция базовой стрелки 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

hello = () => {
  return "Hello World!";
}
Ankur

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

const funcaoDeTesteJavascript = () => {  return "Banana!";}
Important Iguana

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

// Arrow functions let us omit the `function` keyword.
// Here `long_example` points to an anonymous function value.
const long_example = (input1, input2) => {
    console.log("Hello, World!");
    const output = input1 + input2;

    return output;
};

// If there are no braces, the arrow function simply returns the expression
// So here it's (input1 + input2)
const short_example = (input1, input2) => input1 + input2;

long_example(2, 3); // Prints "Hello, World!" and returns 5
short_example(2, 5);  // Returns 7

// If an arrow function only has one parameter, the parentheses can be removed.
const no_parentheses = input => input + 2;

no_parentheses(3); // Returns 5
Ali Salman

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

/**
I think that you might be looking for 
the js "arrow function"; I hope that 
this example below helps ;)
**/ 

// usual function
function fartOne(){
    console.log('Pooofff... pof.. ppf.. poof.. p');
}

// arrow function to do the same
const fartTwo = () => console.log('Baaaf... paf.. poof.. poffie.. plop');

// call the functions to test 'em out..
fartOne();
fartTwo();
CoderHomie

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

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

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

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

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