About 50 results
Open links in new tab
  1. What's the current status of Javascript ES5? - Stack Overflow

    Oct 28, 2010 · What browsers / engines already support ES5 [strict]? AFAIK, the only implementation of ECMAScript 5 is BESEN. It's a bit disappointing, really. BESEN was created from scratch, by a …

  2. javascript - ES5 vs ES6 Promises - Stack Overflow

    Nov 4, 2020 · @ParamSingh - ES5, the standard, does not include promises. We've already said that. Browsers have, for a long time moved beyond ES5 and been implementing parts of ES6, including …

  3. Why does Angular build create files with 'es5' and 'es2015' but not ...

    main-es5.js main-es2015.js polyfills-es5.js polyfills-es2015.js runtime-es5.js runtime-es2015.js I scoured every single file that had the terms es5 and es2015 and changed it to es6, but it still produced the …

  4. How do I get Babel 6 to compile to ES5 javascript?

    Jan 12, 2016 · Though this answer has useful info, it does not answer the question: it does not explain how to compile to ES5. I stand corrected. Apparently the es2015 preset is how you get Babel to …

  5. How to fix "Argument for '--target' option must be: 'es3', 'es5', 'es6 ...

    Jul 14, 2023 · Not sure if this will help ... but something I've done in cases like this is to create a new project so it has all of the correct bootstrapping files. I use the Angular CLI (I haven't used Visual …

  6. TypeScript compiler says “An async function or method in ES5/ES3 ...

    Hello I'm using async / await in my TypeScript project, But I get this log: [ts] An async function or method in ES5/ES3 requires the 'Promise' constructor. Make sure you have a declaration for the 'Promise' …

  7. javascript - What is ESNext? - Stack Overflow

    Jun 10, 2019 · I've come across the term ESNext, and wondering it is the same as the ECMAScript. So, I have these questions here: What is ESNext, actually? Does it refer to any specific version of …

  8. Call ES5 class method from static method - Stack Overflow

    Apr 19, 2017 · Call ES5 class method from static method Asked 8 years, 9 months ago Modified 8 years, 9 months ago Viewed 20k times

  9. Is there a tool to validate ECMAScript and confirm it is compatible ...

    Jan 26, 2015 · I've used online version and it seems with configuration /*jslint browser: true, couch: false, es5: false, sloppy: true, white: true */ it doesn't understand that ! operator is equivalent of () and …

  10. How do I perform an export that is compatible with ES5 and ES6?

    May 14, 2015 · As far as writing an export that is compatible for both ES5 and ES6, Babel already takes care of that for you. (As communicated in the comments to your question.