ES6 μ΄μ μ λͺ¨λ ν¨μλ μΌλ° ν¨μλ‘μ νΈμΆν μ μλ κ²μ λ¬Όλ‘ μμ±μ ν¨μλ‘μ νΈμΆν μ μλ€. λ€μ λ§ν΄, ES6 μ΄μ μ λͺ¨λ ν¨μλ callable μ΄λ©΄μ constructorμ΄λ€. μ΄λ ν¨μμ μ¬μ© λͺ©μ μ λ°λΌ λͺ νν ꡬλΆμ΄ μμΌλ―λ‘ νΈμΆ λ°©μμ νλ³ν μ μ½μ΄ μκ³ μμ±μ ν¨μλ‘ νΈμΆλμ§ μμλ νλ‘ν νμ κ°μ²΄λ₯Ό μμ±νκΈ° λλ¬Έμ νΌλμ€λ¬μ°λ©° μ€μλ₯Ό μ λ°ν κ°λ₯μ±μ΄ μκ³ μ±λ₯μλ μ’μ§μλ€.
λ°λΌμ ES6μμλ ν¨μλ₯Ό μ¬μ© λͺ©μ μ λ°λΌ μΈ κ°μ§ μ’ λ₯λ‘ λͺ νν ꡬλΆνλ€.
ES6 μ¬μμμ λ©μλλ λ©μλ μΆμ½ ννμΌλ‘ μ μλ ν¨μλ§μ μλ―Ένλ€.
const obj = {
x: 1,
// fooλ λ©μλμ΄λ€.
foo() { return this.x; },
// barμ λ°μΈλ©λ ν¨μλ λ©μλκ° μλ μΌλ° ν¨μμ΄λ€.
bar: function() { return this.x; }
};
console.log(obj.foo()); // 1
console.log(obj.bar()); // 1
ES6 μ¬μμμ μ μν λ©μλλ μΈμ€ν΄μ€λ₯Ό μμ±ν μ μλ non-constructorλ€. λ°λΌμ ES6 λ©μλλ μμ±μ ν¨μλ‘μ νΈμΆν μ μλ€. ES6 λ©μλλ μμ μ λ°μΈλ©ν κ°μ²΄λ₯Ό κ°λ¦¬ν€λ λ΄λΆ μ¬λ‘―[[HomeObject]] λ₯Ό κ°λλ€. μ¦ ES6 λ©μλλ super ν€μλλ₯Ό μ¬μ©ν μ μλ€.
const base = {
name: 'Lee',
sayHi() {
return `Hi! ${this.name}`;
}
};
const derived = {
__proto__: base,
// sayHiλ ES6 λ©μλλ€. ES6 λ©μλλ [[HomeObject]]λ₯Ό κ°λλ€.
// sayHiμ [[HomeObject]]λ sayHiκ° λ°μΈλ©λ κ°μ²΄μΈ derivedλ₯Ό κ°λ¦¬ν€κ³
// superλ sayHiμ [[HomeObject]]μ νλ‘ν νμ
μΈ baseλ₯Ό κ°λ¦¬ν¨λ€.
sayHi() {
return `${super.sayHi()}. how are you doing?`;
}
};
console.log(derived.sayHi()); // Hi! Lee. how are you doing?
νμ΄ν ν¨μλ function ν€μλ λμ νμ΄ν(β, fat arrow)λ₯Ό μ¬μ©νμ¬ κΈ°μ‘΄μ ν¨μ μ μλ³΄λ€ κ°λ΅νκ² ν¨μλ₯Ό μ μν μ μλ€. λν μ½λ°±ν¨μ λ΄λΆμμ thisκ° μ μ κ°μ²΄λ₯Ό κ°λ¦¬ν€λ λ¬Έμ λ₯Ό ν΄κ²°νκΈ° μν λμμΌλ‘ μ μ©νλ€.
const multiply = (x, y) => x * y;
multiply(2, 3); // -> 6
// 맀κ°λ³μκ° μ¬λ¬κ°μΈ κ²½μ°
const arrow = (x, y) => { ... };
// 맀κ°λ³μκ° νλμΈ κ²½μ° () μλ΅ κ°λ₯
const arrow = x => { ... };
// 맀κ°λ³μκ° μλ κ²½μ° ()λ₯Ό μλ΅ λΆκ°
const arrow = () => { ... };
// concise body
const power = x => x ** 2;
power(2); // -> 4
// μ ννμ λ€μκ³Ό λμΌνλ€.
// block body
const power = x => { return x ** 2; };
κ°μ²΄ 리ν°λ΄μ λ°ννλ κ²½μ° κ°μ²΄ 리ν°λ΄μ μκ΄νΈ ()λ‘ κ°μΈμ£Όμ΄μΌ νλ€.const create = (id, content) => ({ id, content });
create(1, 'JavaScript'); // -> {id: 1, content: "JavaScript"}
// μ ννμ λ€μκ³Ό λμΌνλ€.
const create = (id, content) => { return { id, content }; };
νμ΄ν ν¨μλ μ¦μ μ€ν ν¨μ(IFE)λ‘ μ¬μ©ν μ μλ€.const person = (name => ({
sayHi() { return `Hi? My name is ${name}.`; }
}))('Lee');
console.log(person.sayHi()); // Hi? My name is Lee.
νμ΄ν ν¨μλ μΌκΈ κ°μ²΄μ΄λ―λ‘ Array.prototype.map
, Array.prototype.filter
, Array.prototype.reduce
κ°μ κ³ μ°¨ν¨μμ μΈμλ‘ μ λ¬ν μ μλ€. // ES5
[1, 2, 3].map(function (v) {
return v * 2;
});
// ES6
[1, 2, 3].map(v => v * 2); // -> [ 2, 4, 6 ]
νμ΄ν ν¨μλ μΈμ€ν΄μ€λ₯Ό μμ±ν μ μλ non-constructorλ€. κ·Έλ¬λ―λ‘ prototype νλ‘νΌν°κ° μκ³ νλ‘ν νμ λ μμ±νμ§ μλλ€.
const Foo = () => {};
// νμ΄ν ν¨μλ μμ±μ ν¨μλ‘μ νΈμΆν μ μλ€.
new Foo(); // TypeError: Foo is not a constructor
μ€λ³΅λ 맀κ°λ³μ μ΄λ¦μ μ μΈν μ μλ€.
function normal(a, a) { return a + a; }
console.log(normal(1, 2)); // 4
const arrow = (a, a) => a + a;
// SyntaxError: Duplicate parameter name not allowed in this context
νμ΄ν ν¨μλ ν¨μ μ체μ this
, arguments
, super
,new.target
λ°μΈλ©μ κ°μ§μλλ€.
νμ΄ν ν¨μλ ν¨μ μ체μ this λ°μΈλ©μ κ°μ§ μλλ€. λ°λΌμ νμ΄ν ν¨μ λ΄λΆμμ thisλ₯Ό μ°Έμ‘°νλ©΄μμ μ€μ½νμ thisλ₯Ό κ·Έλλ‘ μ°Έμ‘°νλ€. μ΄λ₯Ό lexical thisλΌκ³ νλ€.
class Prefixer {
constructor(prefix) {
this.prefix = prefix;
}
add(arr) {
// add λ©μλλ μΈμλ‘ μ λ¬λ λ°°μ΄ arrμ μννλ©° λ°°μ΄μ λͺ¨λ μμμ prefixλ₯Ό μΆκ°νλ€.
// β
return arr.map(function (item) {
return this.prefix + item; // β‘
// -> TypeError: Cannot read property 'prefix' of undefined
});
}
}
const prefixer = new Prefixer('-webkit-');
console.log(prefixer.add(['transition', 'user-select']));
νμ΄ν ν¨μλ ν¨μ μ체μ super λ°μΈλ©μ κ°μ§ μλλ€. λ°λΌμ νμ΄ν ν¨μ λ΄λΆμμ superλ₯Ό μ°Έμ‘°νλ©΄ thisμ λ§μ°¬κ°μ§λ‘ μμ μ€μ½νμ superλ₯Ό μ°Έμ‘°νλ€.
class Base {
constructor(name) {
this.name = name;
}
sayHi() {
return `Hi! ${this.name}`;
}
}
class Derived extends Base {
// νμ΄ν ν¨μμ superλ μμ μ€μ½νμΈ constructorμ superλ₯Ό κ°λ¦¬ν¨λ€.
sayHi = () => `${super.sayHi()} how are you doing?`;
}
const derived = new Derived('Lee');
console.log(derived.sayHi()); // Hi! Lee how are you doing?
ν΄λμ€ νλμ ν λΉν νμ΄ν ν¨μλ νλ‘ν νμ λ©μλκ° μλλΌ μΈμ€ν΄μ€ λ©μλκ° λλ€. λ°λΌμ λ©μλλ₯Ό μ μν λλ ES6λ©μλ μΆμ½ ννμΌλ‘ μ μν ES6λ©μλλ₯Ό μ¬μ©νλ κ²μ΄ μ’λ€.
// Good
class Person {
// ν΄λμ€ νλ μ μ
name = 'Lee';
sayHi() { console.log(`Hi ${this.name}`); }
}
const person = new Person();
person.sayHi(); // Hi Lee
νμ΄ν ν¨μλ ν¨μ μ체μ arguments λ°μΈλ©μ κ°μ§ μλλ€. λ°λΌμ νμ΄ν ν¨μ λ΄λΆμμ argumentsλ₯Ό μ°Έμ‘°νλ©΄ thisμ λ§μ°¬κ°μ§λ‘ μμ μ€μ½νμ argumentsλ₯Ό μ°Έμ‘°νλ€. νμ§λ§ νμ΄ν ν¨μμμλ arguments κ°μ²΄λ₯Ό μ°Έμ‘°ν μλ μμ§λ§ νμ΄ν ν¨μ μμ μκ² μ λ¬λ μΈμ λͺ©λ‘μ νμΈν μ μκ³ μμ ν¨μμκ² μ λ¬λ μΈμ λͺ©λ‘μ μ°Έμ‘°νλ―λ‘ κ·Έλ€μ§ λμμ΄ λμ§ μλλ€. λ°λΌμ νμ΄ν ν¨μλ‘ κ°λ³ μΈμ ν¨μλ₯Ό ꡬνν΄μΌ ν λλ λ°λμ Rest νλΌλ―Έν°λ₯Ό μ¬μ©ν΄μΌ νλ€.
(function () {
// νμ΄ν ν¨μ fooμ argumentsλ μμ μ€μ½νμΈ μ¦μ μ€ν ν¨μμ argumentsλ₯Ό κ°λ¦¬ν¨λ€.
const foo = () => console.log(arguments); // [Arguments] { '0': 1, '1': 2 }
foo(3, 4);
}(1, 2));
// νμ΄ν ν¨μ fooμ argumentsλ μμ μ€μ½νμΈ μ μμ argumentsλ₯Ό κ°λ¦¬ν¨λ€.
// νμ§λ§ μ μμλ arguments κ°μ²΄κ° μ‘΄μ¬νμ§ μλλ€. arguments κ°μ²΄λ ν¨μ λ΄λΆμμλ§ μ ν¨νλ€.
const foo = () => console.log(arguments);
foo(1, 2); // ReferenceError: arguments is not defined
Rest νλΌλ―Έν°(λλ¨Έμ§ λ§€κ°λ³μ)λ 맀κ°λ³μ μ΄λ¦ μμ μΈκ°μ μ ...μ λΆμ¬μ μ μν 맀κ°λ³μλ₯Ό μλ―Ένλ€. Rest νλΌλ―Έν°λ ν¨μμ μ λ¬λ μΈμλ€μ λͺ©λ‘μ λ°°μ΄λ‘ μ λ¬λ°λλ€.
function foo(...rest) {
// 맀κ°λ³μ restλ μΈμλ€μ λͺ©λ‘μ λ°°μ΄λ‘ μ λ¬λ°λ Rest νλΌλ―Έν°λ€.
console.log(rest); // [ 1, 2, 3, 4, 5 ]
}
foo(1, 2, 3, 4, 5);
μΌλ° 맀κ°λ³μμ Rest νλΌλ―Έν°λ ν¨κ» μ¬μ©ν μ μμΌλ©° Rest νλΌλ―Έν°λ λ°λμ λ§μ§λ§ νλΌλ―Έν°μ΄μ΄μΌ νλ€.
function bar(param1, param2, ...rest) {
console.log(param1); // 1
console.log(param2); // 2
console.log(rest); // [ 3, 4, 5 ]
}
bar(1, 2, 3, 4, 5);
function foo(...rest, param1, param2) { }
foo(1, 2, 3, 4, 5);
// SyntaxError: Rest parameter must be last formal parameter
Rest ν리미ν°λ λ¨ νλλ§ μ μΈν μ μκ³ , ν¨μ κ°μ²΄μ length νλ‘νΌν°μ μν₯μ μ£Όμ§ μλλ€.
function foo(...rest1, ...rest2) { }
foo(1, 2, 3, 4, 5);
// SyntaxError: Rest parameter must be last formal parameter
function foo(...rest) {}
console.log(foo.length); // 0
function bar(x, ...rest) {}
console.log(bar.length); // 1
function baz(x, y, ...rest) {}
console.log(baz.length); // 2
ES5μμλ 맀κ°λ³μμ κ°μλ₯Ό μ¬μ μ μ μ μλ κ°λ³ μΈμ ν¨μ νΈμΆμ arguments λΌλ μ μ¬ λ°°μ΄ κ°μ²΄λ₯Ό μ¬μ©ν΄ μ§μ λ³μμ²λΌ μ¬μ©ν μ μλ€. μ΄λ argumentλ λ°°μ΄μ΄ μλ μ μ¬ λ°°μ΄ κ°μ²΄ μ΄λ―λ‘ λ°°μ΄ λ©μλλ₯Ό μ¬μ©νλ €λ©΄ Function.prototype.call
μ΄λ Function.prototype.apply
λ©μλλ₯Ό μ¬μ©ν΄ arguments κ°μ²΄λ₯Ό λ°°μ΄λ‘ λ³νν΄μΌνλ λ²κ±°λ‘μμ΄ μμλ€.
function sum() {
// μ μ¬ λ°°μ΄ κ°μ²΄μΈ arguments κ°μ²΄λ₯Ό λ°°μ΄λ‘ λ³ννλ€.
var array = Array.prototype.slice.call(arguments);
return array.reduce(function (pre, cur) {
return pre + cur;
}, 0);
}
console.log(sum(1, 2, 3, 4, 5)); // 15
ES6μμλ rest νλΌλ―Έν°λ₯Ό μ¬μ©νμ¬ κ°λ³ μΈμ ν¨μμ μΈμ λͺ©λ‘μ λ°°μ΄λ‘ μ§μ μ λ¬λ°μμ μλ€. νμ΄ν ν¨μλ‘ κ°λ³ μΈμ ν¨μλ₯Ό ꡬνν΄μΌ ν λλ λ°λμ Rest νλΌλ―Έν°λ₯Ό μ¬μ©ν΄μΌ νλ€.
function sum(...args) {
// Rest νλΌλ―Έν° argsμλ λ°°μ΄ [1, 2, 3, 4, 5]κ° ν λΉλλ€.
return args.reduce((pre, cur) => pre + cur, 0);
}
console.log(sum(1, 2, 3, 4, 5)); // 15
μλ°μ€ν¬λ¦½νΈ μμ§μ 맀κ°λ³μμ κ°μμ μΈμμ κ°μλ₯Ό 체ν¬νμ§ μκΈ° λλ¬Έμ λ°©μ΄ μ½λκ° νμνλ€. ES6μμ λμ λ 맀κ°λ³μ κΈ°λ³Έκ°μ μ¬μ©ν΄ μΈμ μ²΄ν¬ λ° μ΄κΈ°νλ₯Ό ν μ μλ€.
function sum(x = 0, y = 0) {
return x + y;
}
console.log(sum(1, 2)); // 3
console.log(sum(1)); // 1
rest νλΌλ―Έν°μλ κΈ°λ³Έκ°μ μ§μ ν μ μλ€.
function foo(...rest = []) {
console.log(rest);
}
// SyntaxError: Rest parameter may not have a default initializer