-
Soporte
-
Compiladores y transpiladores
-
Recursos
- ES6 para humanos
- Pensar asíncronamente en un mundo síncrono
- ECMAScript 6 Features - jsfeatures.in
- ECMAScript 6 Features by Luke Hoban
- Learn ES2015 - A detailed overview of ECMAScript 6 features by Babel team
- ECMAScript 6 Cheatsheet by Erik Moeller
- First Steps with ECMAScript 6 by Axel Rauschmayer
- JS Features by Hemanth.HM
- Minimalist examples of ES6 functionalities by Hemanth.HM
- Understanding ECMAScript 6 by Nicholas C. Zakas
- ES6 Overview in 350 Bullet Points by Ponyfoo
- Promise visualization playground for the adventurous
- ECMAScript 6 equivalents in ES5 by Addi Osmani
-
Libros
const PI = 3.141593
PI = 3.1; // Uncaught TypeError: Assignment to constant variable.
const objeto = {
usuario: "yo mismo",
role: "profe"
}
objeto.role = "estudiante" // Propiedades no protegidas al cambio
objeto.nuevo = "" // Se peuden crear nuevas propiedades
objeto = "" // Uncaught TypeError: Assignment to constant variable.
Variables Internas (let)
for (let i = 0; i < a.length; i++) {
let = a[i];
//...
}
/* ECMA5
for (var i = 0; i < a.length; i++) {
var = a[i];
//...
}
*/
var uno = 1;
let dos = 2;
if( uno === 1 ){
var uno = 10;
let dos = 20;
console.log(uno); // 10
console.log(dos); // 20
}
console.log(uno); // 10
console.log(dos); // 2
Funciones Internas
{
function nivel1 () { return 1 }
nivel1 ();
{
function nivel2() { return 2 }
nivel2 ();
}
}
/* ECMA5
(function () {
var nivel1 = function () { return 1; }
nivel1();
(function () {
var nivel2 = function () { return 2; };
nivel2();
})();
})();
*/
- No pueden usarse con
yield
- No pueden ser usadas como constructores
var Foo = () => {};
var foo = new Foo(); // TypeError: Foo is not a constructor
- No tienen una propiedad de prototipo
prototype
var Foo = () => {};
console.log(Foo.prototype); // undefined
- No pueden tener saltos de línea
var func = ()
=> 1;
// SyntaxError: expected expression, got '=>'
- Retorno de objetos literales
var func = () => { foo: 1 };
// Al llamar func() retorna undefined!
var func = () => { foo: function() {} };
// Error de sintaxis: SyntaxError: function statement requires a name
// Funciona correctamente
var func = () => ({ foo: 1 });
- Orden de parseo
let callback;
callback = callback || function() {}; // ok
callback = callback || () => {};
// SyntaxError: invalid arrow-function arguments
callback = callback || (() => {}); // ok
- Siempre son anónimas:
impares = numeros.map(v => v + 1);
pares = evens.map(v => ({ even: v, odd: v + 1 }))
otrosNumeros = evens.map((v, i) => v + i)
/* ECMA5
impares = numeros.map(function (v) { return v + 1; });
pares = evens.map(function (v) { return { even: v, odd: v + 1 }; });
otrosNumeros = numeros.map(function (v, i) { return v + i; });
*/
return
implicito en declaración inline
var odds = [1,2,3,4,5].filter(num => num % 2);
console.log(odds); // Array [ 1, 3, 5 ]
return
con cuerpo de bloque
var func = x => x * x;
// sintaxis de cuerpo conciso, el "return" está implícito
var func = (x, y) => { return x + y; };
// con cuerpo de bloque, se necesita "return" explícito
this
contextual:
this.nums.forEach((v) => {
if (v % 5 === 0)
this.fives.push(v)
})
/* ECMA 5
var self = this;
this.nums.forEach(function (v) {
if (v % 5 === 0)
self.fives.push(v);
});
*/
- Las Arrow functions no exponen un objeto arguments
var arguments = 42;
var arr = () => arguments;
arr(); // 42
function foo() {
var f = () => arguments[0]; // Referencia al objeto arguments
return f(2);
}
foo(1); // 1
- El parámetro rest es la mejor alternativa
function foo() {
var f = (...args) => args[0];
return f(2);
}
foo(1); // 2
- Arrow functions usadas como métodos
var obj = {
i: 10,
b: () => console.log(this.i, this),
c: function() {
console.log(this.i, this);
}
}
obj.b(); // prints undefined, Window {...} (or the global object)
obj.c(); // prints 10, Object {...}
var obj = {
a: 10
};
Object.defineProperty(obj, 'b', {
get: () => {
console.log(this.a, typeof this.a, this);
return this.a + 10; // represents global object 'Window', therefore 'this.a' returns 'undefined'
}
});
- Invocación a través de los métodos call y apply
var adder = {
base : 1,
add : function(a) {
var f = v => v + this.base;
return f(a);
},
addThruCall: function(a) {
var f = v => v + this.base;
var b = {
base : 2
};
return f.call(b, a);
}
};
console.log(adder.add(1)); // Imprime 2 como es esperado
console.log(adder.addThruCall(1)); // También imprime 2 aunque se esperaba 3
- Sintaxis básica
(param1, param2, paramN) => {declaraciones}
(param1, param2, paramN) => expresion
// Equivalente a: () => { return expresion; }
// Los paréntesis son opcionales cuando sólo dispone de un argumento: singleParam => { statements }
singleParam => expresion
// Una función sin argumentos requiere paréntesis:
() => { declaraciones }
- Sintaxis Avanzada
// Incluir entre paréntesis el cuerpo para retornar un objeto literal:
params => ({foo: bar})
// Soporta parámetros rest y parámetros por default
(param1, param2, ...rest) => { statements }
(param1 = valorPredef1, param2, ..., paramN = valorPredefN) => { statements }
// Destructuración mediante la lista de parámetros también es soportada
var f = ([a, b] = [1, 2], {x: c} = {x: a + b}) => a + b + c; f(); // 6
- Parametros opcionales:
function f (x, y = 7, z = 42) {
return x + y + z
}
/* ECMA5
function f (x, y, z) {
if (y === undefined){
y = 7;
}
z = z || 42;
return x + y + z;
};
*/
- Parametros adicionales:
function f (x, y, ...a) {
return (x + y) * a.length
}
/* ECMA5
function f (x, y) {
var a = Array.prototype.slice.call(arguments, 2);
return (x + y) * a.length;
};
*/
- Concepto:
`cadena de texto ${expresión} texto`
- Multiples líneas:
console.log(`línea 1 de texto
línea 2 de texto`);
/* ECMA5
console.log("línea 1 de texto\nlínea 2 de texto");
*/
- Expresiones:
var customer = { name: "Foo" }
var card = { amount: 7, product: "Bar", unitprice: 42 }
message = `Hello ${customer.name},
want to buy ${card.amount} ${card.product} for
a total of ${card.amount * card.unitprice} bucks?`
/* ECMA5
var customer = { name: "Foo" };
var card = { amount: 7, product: "Bar", unitprice: 42 };
message = "Hello " + customer.name + ",\n" +
"want to buy " + card.amount + " " + card.product + " for\n" +
"a total of " + (card.amount * card.unitprice) + " bucks?";
*/
- Raw (No se procesan):
function trabajandoCrudo(texto) {
console.log( texto ); // [ "Hello
// World" ]
console.log( texto.raw ); // [ "Hello\nWorld" ]
}
trabajandoCrudo(`Hello\nWorld`);
- Acortador de propiedades
let obj = { x, y }
/* ECMA5
var obj = { x: x, y: y };
*/
- Definición de propiedades computerizadas:
obj = {
foo: "bar",
[ "prop_" + foo() ]: 42
}
/* ECMA5
obj = {
foo: "bar"
};
obj[ "prop_" + foo() ] = 42;
*/
- Métodos:
obj = {
foo (a, b) {
…
},
bar (x, y) {
…
},
// Generador
*quux (x, y) {
…
}
}
/* ECMA5
obj = {
foo: function (a, b) {
…
},
bar: function (x, y) {
…
},
// quux: no equivalent in ES5
…
};
*/
0b111110111 === 503
0o767 === 503
/* ECMA 5
parseInt("111110111", 2) === 503;
parseInt("767", 8) === 503;
*/
- Objetos:
//Object Matching, Shorthand Notation & Deep Matching
var { op: a, lhs: { op: b }, rhs: c } = getASTNode()
//Default Values
var obj = { a: 1 }
var { a, b = 2 } = obj
// Parameter Context Matching
function g ({ name: n, val: v }) {
console.log(n, v)
}
function h ({ name, val }) {
console.log(name, val)
}
g({ name: "foo", val: 7 })
h({ name: "bar", val: 42 })
/* ECMA5
//Object Matching, Shorthand Notation & Deep Matching
var tmp = getASTNode();
var a = tmp.op;
var b = tmp.lhs.op;
var c = tmp.rhs;
//Default Values
var obj = { a: 1 };
var a = obj.a;
var b = obj.b === undefined ? 2 : obj.b;
// Parameter Context Matching
function g (arg) {
var n = arg.name;
var v = arg.val;
console.log(n, v);
};
function h (arg) {
var name = arg.name;
var val = arg.val;
console.log(name, val);
g({ name: "foo", val: 7 });
h({ name: "bar", val: 42 });
*/
- Arrays:
// Matching
var list = [ 1, 2, 3 ]
var [ a, , b ] = list
// Parameter Context Matching
function f ([ name, val ]) {
console.log(name, val)
}
f([ "bar", 42 ]);
// Fail-Soft Destructuring
var list2 = [ 7, 42 ]
var [ a = 1, b = 2, c = 3, d ] = list2
/* ECMA5
// Matching
var list = [ 1, 2, 3 ];
var a = list[0], b = list[2];
// Parameter Context Matching
function f (arg) {
var name = arg[0];
var val = arg[1];
console.log(name, val);
};
f([ "bar", 42 ]);
// Fail-Soft Destructuring
var list2 = [ 7, 42 ];
var a = typeof list2[0] || 1;
var b = typeof list2[1] || 2;
var c = typeof list2[2] !== "undefined" ? list2[2] : 3;
var d = typeof list2[3] !== "undefined" ? list2[3] : undefined;
*/
function* greatGenerator(name) {
yield "Hola " + name + "!";
yield "Esta línea saldrá en la segunda ejecución";
yield "Esta otra, en la tercera";
if (name === "Miguel") yield "Esta otra, saldrá en la cuarta solo si te llamas miguel"
}
var generatorInstance = greatGenerator("paco");
console.log(generatorInstance.next().value); // Hola paco!
console.log(generatorInstance.next().value); // Esta línea saldrá la segunda ejecución
console.log(generatorInstance.next().value); // Esta otra, en la tercera
console.log(generatorInstance.next().value); // undefined
- Manejando datos independientes con una estructura clave/valor
let miMap = new Map();
let miArray = [];
miMap.set('cadena', 'Hola!');
miMap.set(miArray, [500, "hola", true, false]);
console.log(miMap.get(miArray)); // [500, "hola", true, false]
console.log(miMap.get('cadena')); // Hola!
console.log(miMap.size); // 2
miMap.delete('cadena');
console.log(miMap.size); // 1
- Es un array de valores únicos
let s = new Set()
s.add("hello").add("goodbye").add("hello")
s.size === 2
s.has("hello") === true
for (let key of s.values()) // insertion order
console.log(key)
- Set vs Map:
//@see: https://stackoverflow.com/a/24085746
var array = [1, 2, 3, 3];
var set = new Set(array); // Will have [1, 2, 3]
assert(set.size, 3);
var map = new Map();
map.set('a', 1);
map.set('b', 2);
map.set('c', 3);
map.set('C', 3);
map.set('a', 4); // Has: a, 4; b, 2; c: 3, C: 3
assert(map.size, 4);
- Solamente se coleccionan objetos
- Los objetos son únicos dentro de la colección
- Los WeakSets no son enumerables
- Si ya no hay otra referencia a un objeto almacenado en el WeakSet, ellos pueden ser removidos por el recolector de basura. Esto también significa que no hay ninguna lista de objetos almacenados en la colección.
var ws = new WeakSet();
var obj = {};
var foo = {};
ws.add(window);
ws.add(obj);
ws.has(window); // true
ws.has(foo); // false, foo no fue agregado al conjunto
ws.delete(window); // elimina window del conjunto
ws.has(window); // false, window fue eliminado
null
es tratado comoundefined
- Las claves de los WeakMaps solamente pueden ser del tipo
Object
- Las claves de WeakMap no son enumerables
var wm1 = new WeakMap(),
wm2 = new WeakMap(),
wm3 = new WeakMap();
var o1 = {},
o2 = function(){},
o3 = window;
wm1.set(o1, 37);
wm1.set(o2, "azerty");
wm2.set(o1, o2); // un valor puede ser cualquier cosa, incluidos objetos o funciones
wm2.set(o3, undefined);
wm2.set(wm1, wm2); // claves y valores pueden ser objetos cualesquiera. !Incluso WeakMaps!
wm1.get(o2); // "azerty"
wm2.get(o2); // undefined, porque no hay valor para o2 en wm2
wm2.get(o3); // undefined, porque es es el valor del conjunto
wm1.has(o2); // true
wm2.has(o2); // false
wm2.has(o3); // true (incluso si el valor es 'undefined')
wm3.set(o1, 37);
wm3.get(o1); // 37
wm1.has(o1); // true
wm1.delete(o1);
wm1.has(o1); // false
- Es un nuevo primitivo
- No podemos usar
new
porque no es constructor - Trabajan como identificadores (como el
id
en HTML) - Los simbolos son únicos y e inmutables
var simbolo = Symbol();
console.log(typeof simbolo); // Me devuelve symbol
const a = Symbol("Yo mismo");
const b = Symbol("Yo mismo");
console.log(a === b); // Devuelve false
const a = Symbol.for("Yo mismo");
const b = Symbol.for("Yo mismo");
console.log(a === b); // Devuelve false
Symbol("foo") !== Symbol("foo")
const foo = Symbol()
const bar = Symbol()
typeof foo === "symbol"
typeof bar === "symbol"
let obj = {}
obj[foo] = "foo"
obj[bar] = "bar"
JSON.stringify(obj) // {}
Object.keys(obj) // []
Object.getOwnPropertyNames(obj) // []
Object.getOwnPropertySymbols(obj) // [ foo, bar ]
- Pensado para trabajar con datos binarios puros (ws, audio, vídeo...)
- No son arrays convencionales, asi que
Array.isArray()
esfalse
- Tenemos que trabajar con buffers, ArrayBuffer
DataView
provee una interfaz de bajo nivel para la lectura y escritura de diferentes tipos de números dentro de unArrayBuffer
// creando un ArrayBuffer con un tamaño específico en bytes
var buffer = new ArrayBuffer(16);
// Creando un par de vistas...
var view1 = new DataView(buffer);
var view2 = new DataView(buffer,12,4); //desde el byte 12 por los siguientes 4 bytes
view1.setInt8(12, 42); // guarda 42 en el slot 12
console.log(view2.getInt8(0)); // 42
TypedArray
provee una interfaz similar a un array dentro de unArrayBuffer
const typedArray1 = new Int8Array(8);
typedArray1[0] = 32;
const typedArray2 = new Int8Array(typedArray1);
typedArray2[1] = 42;
console.log(typedArray1); //Int8Array [32, 0, 0, 0, 0, 0, 0, 0]
console.log(typedArray2); //Int8Array [32, 42, 0, 0, 0, 0, 0, 0]
Proxy()
- Nos permite interceptar propiedades en los objetos y detectar cambios
- Puedes capturar infinidad de métodos. Lista aquí
// Interceptar un objeto
var target = {};
var superhero = new Proxy(target, {
get: function(target, name, receiver) {
console.log('ejecutado "get" para propiedad: ', name);
return target[name];
}
});
superhero.power = 'Flight';
console.log(superhero.power);
Reflect
Reflect es un objecto incorporado que proporciona metodos para interceptar operaciones de javascript. Los métodos son los mismos que los de proxy handlers. Reflect no es un objeto de funciones y por lo tanto no es constructible. MDN | Reflect
let obj = { a: 1 }
Object.defineProperty(obj, "b", { value: 2 })
obj[Symbol("c")] = 3
Reflect.ownKeys(obj) // [ "a", "b", Symbol(c) ]
/* ECMA5
var obj = { a: 1 };
Object.defineProperty(obj, "b", { value: 2 });
// no equivalent in ES5
Object.getOwnPropertyNames(obj); // [ "a", "b" ]
*/
Collation
// in German, "ä" sorts with "a"
// in Swedish, "ä" sorts after "z"
var lista = [ "ä", "a", "z" ]
var DE = new Intl.Collator("de")
var SV = new Intl.Collator("sv")
DE.compare("ä", "z") === -1
SV.compare("ä", "z") === +1
console.log(lista.sort(DE.compare)) // [ "a", "ä", "z" ]
console.log(lista.sort(SV.compare)) // [ "a", "z", "ä" ]
Números
var US = new Intl.NumberFormat("en-US")
var DE = new Intl.NumberFormat("de-DE")
US.format(1234567.89) === "1,234,567.89"
DE.format(1234567.89) === "1.234.567,89"
Moneda
var USD = new Intl.NumberFormat("en-US", { style: "currency", currency: "USD" })
var GBP = new Intl.NumberFormat("en-GB", { style: "currency", currency: "GBP" })
var EUR = new Intl.NumberFormat("de-DE", { style: "currency", currency: "EUR" })
USD.format(100200300.40) === "$100,200,300.40"
GBP.format(100200300.40) === "£100,200,300.40"
EUR.format(100200300.40) === "100.200.300,40 €"
Fecha
var US = new Intl.DateTimeFormat("en-US")
var DE = new Intl.DateTimeFormat("de-DE")
US.format(new Date("2015-01-02")) === "1/2/2015"
DE.format(new Date("2015-01-02")) === "2.1.2015"
- Iteración sobre valores y no propiedades
let arr = [3, 5, 7];
arr.foo = "hello";
for (let i in arr) {
console.log(i);
// "0", "1", "2", "foo"
}
for (let i of arr) {
console.log(i);
// "3", "5", "7"
}
" ".repeat(4 * depth)
"foo".repeat(3)
/* ECMA5
Array((4 * depth) + 1).join(" ");
Array(3 + 1).join("foo");
*/
"hello".startsWith("ello", 1) // true
"hello".endsWith("hell", 4) // true
"hello".includes("ell") // true
"hello".includes("ell", 1) // true
"hello".includes("ell", 2) // false
/* ECMA5
"hello".indexOf("ello") === 1; // true
"hello".indexOf("hell") === (4 - "hell".length); // true
"hello".indexOf("ell") !== -1; // true
"hello".indexOf("ell", 1) !== -1; // true
"hello".indexOf("ell", 2) !== -1; // false
*/
- Number.isNaN() Chequear No-Numericos e infinitos:
Number.isNaN(42) === false
Number.isNaN(NaN) === true
/* ECMA5
var isNaN = function (n) {
return n !== n;
};
isNaN(42) === false;
isNaN(NaN) === true;
*/
Number.isFinite(Infinity) === false
Number.isFinite(-Infinity) === false
Number.isFinite(NaN) === false
Number.isFinite(123) === true
/* ECMA5
var isFinite = function (v) {
return (typeof v === "number" && !isNaN(v) && v !== Infinity && v !== -Infinity);
};
isFinite(Infinity) === false;
isFinite(-Infinity) === false;
isFinite(NaN) === false;
isFinite(123) === true;
*/
Number.isSafeInteger(42) === true
Number.isSafeInteger(9007199254740992) === false
/* ECMA5
function isSafeInteger (n) {
return (
typeof n === 'number'
&& Math.round(n) === n
&& -(Math.pow(2, 53) - 1) <= n
&& n <= (Math.pow(2, 53) - 1)
);
}
isSafeInteger(42) === true;
isSafeInteger(9007199254740992) === false;
*/
console.log(Math.trunc(42.7)) // 42
console.log(Math.trunc( 0.1)) // 0
console.log(Math.trunc(-0.1)) // -0
/* ECMA5
function mathTrunc (x) {
return (x < 0 ? Math.ceil(x) : Math.floor(x));
}
console.log(mathTrunc(42.7)) // 42
console.log(mathTrunc( 0.1)) // 0
console.log(mathTrunc(-0.1)) // -0
*/
var lista = Array( 3 );
console.log(lista.length); // 3
console.log(lista[0]); // undefined
var lista2 = Array.of( 1, 2, 3 );
console.log(lista2.length); // 3
console.log(lista2); // [1,2,3]
console.log(Array.from('fictizia')); // ["f", "i", "c", "t", "i", "z", "i", "a"]
console.log(Array.from([1, 2, 3], x => x + x)); // [2, 4, 6]
var lista = [1, 2, 3, 4];
// fill con 0 desde [2] hasta [4]
console.log(lista.fill(0, 2, 4)); // [1, 2, 0, 0]
// fill con 5 desde [1]
console.log(lista.fill(5, 1)); // [1, 5, 5, 5]
console.log(lista.fill(6)); // [6, 6, 6, 6]
var lista = [5, 12, 8, 130, 44];
var coincidencia = lista.find(function(elemento) {
return elemento > 10;
});
console.log("coincidencia:", coincidencia); // 12
var lista = [5, 12, 8, 130, 44];
function numeroGrande(elemento) {
return elemento > 13;
}
console.log(lista.findIndex(numeroGrande)); // 3
var dst = { quux: 0 }
var src1 = { foo: 1, bar: 2 }
var src2 = { foo: 3, baz: 4 }
Object.assign(dst, src1, src2)
// Verificación
dst.quux === 0
dst.foo === 3
dst.bar === 2
dst.baz === 4
/* ECMA5
var dst = { quux: 0 };
var src1 = { foo: 1, bar: 2 };
var src2 = { foo: 3, baz: 4 };
Object.keys(src1).forEach(function(k) {
dst[k] = src1[k];
});
Object.keys(src2).forEach(function(e) {
dst[k] = src2[k];
});
// Verificación
dst.quux === 0;
dst.foo === 3;
dst.bar === 2;
dst.baz === 4;
*/
Object.is( NaN, NaN ); // true
NaN === NaN; // false
var obj = {}
Object.is(obj, obj); // true
obj === obj // false
A promise represents the eventual result of an asynchronous operation. The primary way of interacting with a promise is through its then method, which registers callbacks to receive either a promise’s eventual value or the reason why the promise cannot be fulfilled. From promisesaplus.com/
- Estados:
- Fulfilled – La acción en relación con la promesa se logró.
- Rejected – La acción en relación con la promesa falló.
- Pending – Pendiente, no se ha cumplido o rechazado aún.
- Settled - Arreglada, se ha cumplido o se ha rechazado (resuelta).
- Soporte en navegadores
- Una promesa
var cuentaPromesas = 0;
var errorMode = false;
function testPromesa() {
var numPromesaActual = ++cuentaPromesas;
console.warn("Promesa Asíncrona numero ("+numPromesaActual+") - Iniciada")
var miPromesa = new Promise(
function(resolve, reject) {
console.info("Promesa Asíncrona numero ("+numPromesaActual+") - Proceso asincrónico empezado");
if(errorMode){
reject(numPromesaActual)
} else{
window.setTimeout(
function() {
resolve(numPromesaActual)
}, Math.random() * 2000 + 1000);
}
});
miPromesa.then(
function(val) {
console.info("Promesa Asíncrona numero ("+val+") - Proceso asincrónico terminado");
console.warn("Promesa Asíncrona numero ("+numPromesaActual+") - Finalizada");
}).catch(
function(val){
console.error("Promesa Asíncrona numero ("+val+") - ERROR FATAL");
});
};
testPromesa();
- .race()
var p1 = new Promise(function(resolve, reject) {
setTimeout(resolve, 500, "uno");
});
var p2 = new Promise(function(resolve, reject) {
setTimeout(resolve, 100, "dos");
});
Promise.race([p1, p2]).then(function(value) {
console.log(value); // "dos" - p2 más rápida
});
- .all()
var errorMode = false
var p1 = new Promise(function(resolve, reject) {
console.log("P1 - Iniciada");
setTimeout(resolve, 1000, "P1 - Terminada");
});
var p2 = new Promise(function(resolve, reject) {
console.log("P2 - Iniciada");
setTimeout(resolve, 2000, "P2 - Terminada");
});
var p3 = new Promise(function(resolve, reject) {
if(errorMode){
reject("errorMode-Activado");
} else {
console.log("P3 - Iniciada");
setTimeout(resolve, 3000, "P3 - Terminada");
}
});
var p4 = new Promise(function(resolve, reject) {
console.log("P4 - Iniciada");
setTimeout(resolve, 4000, "P4 - Terminada");
});
Promise.all([p1, p2, p3, p4]).then(function(value) {
console.info("Promise.all -> TODO TERMINADO", value)
}, function(reason) {
console.log("Parece... que fallamos!", reason)
});
-
function primeraFuncion() { var deferred = Q.defer(); setTimeout(function() { console.info('Primera funcion'); deferred.resolve(); }, 2000); return deferred.promise; } function segundaFuncion() { var deferred = Q.defer(); setTimeout(function() { console.info('Segunda funcion'); deferred.resolve(); }, 1000); return deferred.promise; } Q() .then(primeraFuncion) .then(segundaFuncion) .done();
- Único
// config.js
let config = {
token: "secreto",
}
export default config;
- Mutiples
// config.js
let config = {
token: "secreto",
}
let config_details = {
detalles: "más datos"
}
export config;
export config_details;
- Combinada
// config.js
let config = {
token: "secreto",
}
let config_details = {
detalles: "más datos"
}
let configuraciones = {config, config_details}
export default configuraciones;
export config;
export config_details;
- Síncrona
// único
import config from './config.js';
// Multiples
import * as config from './config.js';
// Combinandos
import configuraciones from './config.js';
import { config, config_details } from './config.js';
- Asíncrona (solo un módulo)
System.import('modulo')
.then(modulo => {
// Uso del módulo importado
})
.catch(error => {
// Gestión de errores
});
- Asíncrona (multiples módulos)
Promise.all(
['module1', 'module2', 'module3']
.map(x => System.import(x)))
.then(([module1, module2, module3]) => {
// Use module1, module2, module3
});
- Export/Import
// lib/math.js
export function sum (x, y) { return x + y }
export var pi = 3.141593
// someApp.js
import * as math from "lib/math"
console.log("2π = " + math.sum(math.pi, math.pi))
// otherApp.js
import { sum, pi } from "lib/math"
console.log("2π = " + sum(pi, pi))
/* ECMA5
// lib/math.js
LibMath = {};
LibMath.sum = function (x, y) { return x + y };
LibMath.pi = 3.141593;
// someApp.js
var math = LibMath;
console.log("2π = " + math.sum(math.pi, math.pi));
// otherApp.js
var sum = LibMath.sum, pi = LibMath.pi;
console.log("2π = " + sum(pi, pi));
*/
- Default & Wildcard
// lib/mathplusplus.js
export * from "lib/math"
export var e = 2.71828182846
export default (x) => Math.exp(x)
// someApp.js
import exp, { pi, e } from "lib/mathplusplus"
console.log("e^{π} = " + exp(pi))
/* ECMA5
// lib/mathplusplus.js
LibMathPP = {};
for (symbol in LibMath)
if (LibMath.hasOwnProperty(symbol))
LibMathPP[symbol] = LibMath[symbol];
LibMathPP.e = 2.71828182846;
LibMathPP.exp = function (x) { return Math.exp(x) };
// someApp.js
var exp = LibMathPP.exp, pi = LibMathPP.pi, e = LibMathPP.e;
console.log("e^{π} = " + exp(pi));
*/
1 - ¿Que tal unas Katas de ES6? Recomendación:
- Promise
- Array
- Destructuring
- Map
- Set
- Template String
- Arrow Function
- Block scope
- Rest Operator
- Spread operator
- Default parameters