Object-oriented Programming in JavaScript: Made Super Simple Mosh의 강의를 정리한 내용입니다. Object Oriented Programming 이 뭔지 알아봤으니 JavaScript로 Object를 만들어볼 차례이다. 📎 Object literal Object literal 방식은 오브...
Closure란 A closure is the combination of a function and the lexical environment within which that function was declared. Lexical Scoping 프로그램은 해당 변수가 필요할 때 어디를 찾아봐야할까 ? 프로그램에서 변수를 찾기 편하게 하기 위해서 Sc...
[JavaScript Tutorial] 014 Function Statements and Function Expressions 강의를 듣고 정리한 내용입니다. function은 자바스크립트에서 블럭 { }을 만드는 기본적인 방법 중 하나이다. 함수란 변수를 가지고 어떤 일을 수행하거나 계산하는 일을 한다. 함수는 기본적으로 이렇게 생겼다. - 함수 ...
책 인사이드 자바스크립트를 읽고 정리한 내용입니다. 함수는 일급 객체 ( 변수에 값으로 할당될 수 있고, 함수의 리턴값, 함수의 매개변수로 전달, 객체이기 때문에 동적으로 프로퍼티를 생성할 수 있음) 기본 property : length, prototype prototype과 [[Prototype]] , proto 와의 차이 내부함수와 스코프 체인, 클로져...