Javascript 고급

http://bugtype-kr.gitbook.io/javascript-advanced

자바스크립트가 어떤식으로 동작하는지 알아보면서, 앞으로 최적화된 코드를 작성을 해보자.

내부적인 동작원리를 알면, 코드 하나에 담긴 여러가지 의미를 알게된다.

// Case1
const hello = function(message) { console.log(message)}

// Case 2 ( class에서는 성능 이슈가 있다. )
const hello2 = (message) => console.log(message)

목차

1) Closure2) Arrow Function3) Hidden Class4) setTimeout5) Nodejs6) Thinking

Last updated

Was this helpful?