Also known as ECMAScript 6, ECMAScript 2015 or Javascript 6, ES6 is a version of Javascript that was introduced in 2105.

ECMAScript (ES) is a scripting language specification standardised by ECMA International. It is used by applications to enable client-side scripting.

ECMA stands for:

European Computer Manufacturers Association

ES6 has some of the following features:

  1. Support for constants.
  2. Block scope.
  3. Arrow functions.
  4. Extended parameter handling.
  5. Template literals.
  6. Extended literals.
  7. Enhanced object properties.
  8. De-structuring assignment.
  9. Modules.
  10. Classes.
  11. Iterators.
  12. Generators.
  13. Collections.
  14. Built-in methods for classes
  15. Promises.

Consider this way of declaring a function in vanilla Javascript:

function myFunc(){
//do something
}

In ES6, we would use an Arrow Function like so:

myFunc = () =>{
//do something here
}

In Summary …

ES6 is all about simplicity and efficiency. But if you are just starting out in Javascript or thinking about it, it is a good idea to go through the ‘Vanilla’ way first so that you can understand the core concepts of the language.

Recent Posts

How to Debug Your JavaScript Code

Debugging JavaScript code can sometimes be challenging, but with the right practices and tools, you…

2 hours ago

Service Workers in JavaScript: An In-Depth Guide

Service Workers are one of the core features of modern web applications, offering powerful capabilities…

2 weeks ago

What are Database Driven Websites?

A database-driven website is a dynamic site that utilizes a database to store and manage…

2 weeks ago

How to show Toast Messages in React

Toasts are user interface elements commonly used in software applications, especially in mobile app development…

2 weeks ago

Exploring the Relationship Between JavaScript and Node.js

JavaScript has long been synonymous with frontend web development, powering interactive and dynamic user interfaces…

3 weeks ago

Key Differences Between Tailwind CSS and CSS3

Introduction: In the world of web development, CSS (Cascading Style Sheets) plays a crucial role…

4 weeks ago