JavaScript Iterators

后端 未结 6 1511
清酒与你
清酒与你 2020-12-28 23:03

I was going through MDN (Mozilla Developer Network) and came across Iterators and generators

So naturally, I tried the snippets of code given in the page on Google C

6条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-28 23:42

    From this thread:

    V8 is an implementation of ECMAScript, not JavaScript. The latter is a non-standardized extension of ECMAScript made by Mozilla.

    V8 is intended to be plug-in compatible with JSC, the ECMAScript implementation in WebKit/Safari. As such it implements a number of non-standard extensions of ECMAScript that are also in JSC, and most of these are also in Mozilla's JavaScript languages.

    There is no plan to add non-standard features that are not in JSC to V8.

    Note: JSC stands for JavaScript Core - the WebKit ECMAScript implementation.

提交回复
热议问题