Arrow Functions 함수는 간결해지고 코드는 짧아졌다. ES5 문법 this 예제1 let function_ES5 = function(param){ return param; } let function_ES6 = (param) => { return param; } ES6 문법 this 예제2 function NumberEx2() { this.num = 0; setInterval(() => { this.num++; // this is from NumberEx console.log(this.num); }, 500) } ES5 문법 this 예제3 function NumberEx3() { this.num = 0; console.log("NumberEx3() this : " + this.num); con..