JavaScript – ES6 Features

ES6 Features: ES6 brought significant changes to the JavaScript language. It introduces several new features such as, block-scoped variables, new loop for iterating over arrays and objects, template literals, and many other enhancements

ES6 features are:

  1. The let keyword
  2. The const keyword
  3. Arrow Functions
  4. For/of
  5. Map Objects
  6. Set Objects
  7. Classes
  8. Function Rest Parameter
  9. String.includes()
  10. String.startsWith()
  11. String.endsWith()
  12. Array.from()
  13. Array keys()
  14. Array find()
  15. Array findIndex()
  16. New Math Methods
Scroll to Top