__proto__ vs prototype
__proto__는 (이 글)에 정리해두었다. 그런데 prototype은 또 무엇일까? Remember that __proto__ means an object’s prototype. The prototype property and the new operator are a whole different topic - just javascript, dan abramov 실은, __proto__와 prototype은 다른 것이긴 하지만 그렇다면 완전 멀리 있는 것도 아니다. prototype은 객체를 찍어내는 원형이라고 생각하면 된다. new Number,() new String(), new Array(), new Function()... 등으로 Object를 생성할 수 있는 것은 이것들의 prototype(원..