“Función de flecha en ES6” Código de respuesta

Funciones de flecha

// The usual way of writing function
const magic = function() {
  return new Date();
};

// Arrow function syntax is used to rewrite the function
const magic = () => {
  return new Date();
};
//or
const magic = () => new Date();

Owlthegentleman

Función de flecha en ES6

var array = [1, 2, 3, 4]

const sum = (acc, value) => acc + value
const product = (acc, value) => acc * value

var sumOfArrayElements = array.reduce(sum, 0)
var productOfArrayElements = array.reduce(product, 1)
Outrageous Ostrich

Función de flecha en JavaScript

let numbers = (x, y, z) => (x + y + z) * 2;
console.log(numbers(3, 5, 9))
//Expected output:34
Ariful Islam Adil(Code Lover)

Respuestas similares a “Función de flecha en ES6”

Preguntas similares a “Función de flecha en ES6”

Más respuestas relacionadas con “Función de flecha en ES6” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código