Top "Ecmascript-7" questions

Questions about new/changed features in version 7 of the ECMAScript specification officially known as ECMAScript 2016

TypeScript: class composition

Based on this awesome Composition over Inheritance video by MPJ, I've been trying to formulate composition in TypeScript. I want …

javascript class typescript composition ecmascript-7
Then is not a function on axios async/await post request

I am registering user via a POST request. To do this, I am using axios with async/await! However, I …

javascript asynchronous vue.js axios ecmascript-7
ES7, ES8, ES9, ES10 Browser support

It is fairly easy to check out the data about browser support for ECMAScript2015 (ES6), but I found it pretty …

javascript ecmascript-7 ecmascript-2017
Ability to abort asynchronous call

I'm using babeljs with es7 style async/await methods. I have a main script that will call a async method …

javascript node.js asynchronous babeljs ecmascript-7
javascript : Async/await in .replace

I am using the async/await function the following way async function(){ let output = await string.replace(regex, async (match)=&…

javascript async-await es6-promise ecmascript-7
How do I destructure all properties into the current scope/closure in ES2015?

I'd like to do something like this: const vegetableColors = {corn: 'yellow', peas: 'green'}; const {*} = vegetableColors; console.log(corn);// yellow console.…

javascript ecmascript-6 destructuring ecmascript-7
Babel 7 spread syntax in IE/Edge not working

So i have babel 7 installed, along with the plugin "@babel/plugin-proposal-object-rest-spread" included within my preset-env, however I'm still getting the …

reactjs internet-explorer babeljs ecmascript-7 spread-syntax