“Características de ES6 en JavaScript” Código de respuesta

Características de ES6 en JavaScript

// app.js
import * as math from "lib/math";
alert("2π = " + math.sum(math.pi, math.pi));
Precious Pony

Características de ES6 en JavaScript

// lib/math.js
export function sum(x, y) {
  return x + y;
}
export var pi = 3.141593;
Precious Pony

Características de ES6 en JavaScript

// otherApp.js
import {sum, pi} from "lib/math";
alert("2π = " + sum(pi, pi));
Precious Pony

Características de ES6 en JavaScript

// app.js
import ln, {pi, e} from "lib/mathplusplus";
alert("2π = " + ln(e)*pi*2);
Precious Pony

Características de ES6 en JavaScript

// lib/mathplusplus.js
export * from "lib/math";
export var e = 2.71828182846;
export default function(x) {
    return Math.log(x);
}
Precious Pony

Respuestas similares a “Características de ES6 en JavaScript”

Preguntas similares a “Características de ES6 en JavaScript”

Más respuestas relacionadas con “Características de ES6 en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código