摘要:
【普通对象 vs 函数对象】 js中对象分为两类,普通对象、函数对象。当在终端打印时,普通对象与函数对象有极其明显的差异。 一个不含杂七杂八的函数对象如下,这是第一种表现形式。: 若往里面塞东西,则会显示成下面这样。这是第二种表现形式,特点是【】别扭地紧跟在{右侧。: 一个普通对象有如下两种形式: 阅读全文
摘要:
【new operator】 When the code new Foo(...) is executed, the following things happen: You can add a shared property to a previously defined object type 阅读全文