es6에서는 arrow function을 사용한다. 근데 arrow function과 일반 function은 엄연히 다르다. app.js 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 this.test = "global variable" ; var normalFunctionTest = { test : "mung" , c : function (){ console .log(this.test); } } var arrowFunctionTest = { test : "mung" , c : () = > { console .log(this.test); } } normalFunctionTest.c(); arrowFunctionTest.c(); cs $ node app.js mung global variable https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions 가장 상단에 arrow function은 ...