diff --git a/locale/en/docs/es6.md b/locale/en/docs/es6.md index 749ba52da581f..6d67abd5324a9 100644 --- a/locale/en/docs/es6.md +++ b/locale/en/docs/es6.md @@ -55,12 +55,24 @@ All ES6 features are split into three groups for **shipping**, **staged**, and * * [Arrow Functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions) +* [new.target](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/new.target) + +* [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) + +* [Spread operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator) + You can view a more detailed list, including a comparison with other engines, on the [compat-table](https://kangax.github.io/compat-table/es6/) project page. ## Which ES6 features are behind the --es_staging flag? * [`Symbol.toStringTag`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol) (user-definable results for `Object.prototype.toString`, behind flag `--harmony_tostring`) +* [`Array.prototype.includes`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes) (determine whether +an array includes a certain element, behind flag `--harmony_array_includes`) + +* [Rest Parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters) (represent an indefinite number +of arguments as an array, behind flag `--harmony_rest_parameters`) + ## Which ES6 features are in progress? New features are constantly being added to the V8 engine. Generally speaking, expect them to land on a future Node.js release, although timing is unknown.