In ECMAScript, how are some of native objects also built-in?

后端 未结 2 1324
小鲜肉
小鲜肉 2021-01-21 10:23

I suppose a definition of native and built-in objects is required to answer this question. Here\'s what the ECMAScript spec defines these as:

4.3.6 native

2条回答
  •  借酒劲吻你
    2021-01-21 11:16

    Native object - means implemented not in ECMAScript itself. Buiilt-in object - the one that's provided by the engine. Think Math, String and such.

提交回复
热议问题