로딩
티스토리 데이터 처리 중입니다.

[EcmaScript6] ArrorFunction과 prototype

 [EcmaScript6] ArrorFunction과 prototype

1.Arrow Function 우선, ES5의 함수 사용법이다. var hello = function(x){ return x*2; } 그리고 ES6의 ArrowFunction 사용예시이다. const hello = (x) => { return x*10; } 매개변수가 1개인 경우에는 다음.....

[EcmaScript6] ArrorFunction과 prototype에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.