This page looks best with JavaScript enabled

This Is Why Learning New JavaScript ES6 Syntax Is So Famous!

 ·  ☕ 10 min read  ·  ✍️ Adesh

What is ES6?

ECMASCRIPT 2015 or ES6 has introduced many changes to JavaScript. JavaScript ES6 has introduced new syntax and new awesome features to make your code more modern and more readable.

It allows you to write less code and do more.

ES6 introduced many great features like arrow functions, template strings, class destructions, modules… and many more.

Let’s dive into more reasons of its popularities.

Reason 1: You can write it now for all Browsers.

ES6 is now supported in all major browsers. Here is the list of Browsers support for ES6.

Browser Support For ES6

Photo Courtesy: W3Schools.com

Reason 2: Full Backward Browser Compatible

It has support for backward compatible version of JavaScript in current and older browsers or environments. JavaScript being a rich ecosystem, has hundreds of packages on the package manager (NPM), and it has been adopted worldwide. To make sure ES5 JavaScript packages should always work in the presence of ES6, they decided to make it 100% backward compatible.

This has one major benefit. You can start writing ES6 along with your existing JavaScript ES5. This also help you to start slowly embracing new features and adopting the aspects of ES6, which can make your life easier as a programmer.

To support full backward browser compatibility, here is a very cool project called Babel.

What is Babel?

Babel is a JavaScript Transpiler that converts edge JavaScript into plain old ES5 JavaScript that can run in any browser. For more details about Babel, please click the below links.

Learn more about Babel.

Babel Usage Guide. How to setup Babel?

Reason 3: ES6 is faster in some cases.

I am going to share one performance benchmark for ES6. ES6 performed more better or even hit the performance benchmark for the same function written in ES5. You can visit this link as well to check the ES6 performance benchmark.

Performance of ES6 features relative to the ES5 baseline operations per second

Reason 4: Doing more with writing less code

As said above, now you can do lot more with writing less code in your ES6. You can write more cleaner and concise code in ES6. Here is few examples of code syntax of ES6.

1. Arrow Functions in ES6

No need to write function and return keywords anymore. This is one of the more awesome feature of ES6, makes your code looks more readable, more structured, and looks like modern code. You don’t need to write old syntax anymore.

1
2
3
4
5
6
7
var func = (x) => x * x;
// concise body with implicit return keyword

var func = (x, y) => {
  return x + y;
};
// block body with explicit return keyword

An arrow function expression has a shorter syntax than a function expression and does not have its own this, arguments, super, or new.target.

Arrow Function Body

One of the benefit of arrow function is to have either concise body or the usual block body.

In a concise body, only an expression is mentioned in a single line with the implicit return value. In a block body, you must use explicit return keyword, normally with curly braces { return .. }.

1
2
3
4
5
6
7
var func = (x) => x * x;
// concise body with implicit return keyword

var func = (x, y) => {
  return x + y;
};
// block body with explicit return keyword

Line Break in Arrow function

ES6 will throw an error if there is an improper line break in arrow function. Ideally, it should be single line statement. If you want to use it as multi line statement, use the proper curly braces or brackets.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
var func = (a, b, c)
           => 1;
// Throw syntax error

//Use Proper syntax
var func = (
    a,
    b,
    c
  ) => (
    1
  );
  // no SyntaxError thrown

Arrow function example in ES6 vs ES5

1
2
3
4
5
6
7
//ES6
odds = evens.map((v) => v + 1);

//ES5
odds = evens.map(function (v) {
  return v + 1;
});

2. Extended Parameter Handling in ES6

2.1 Default Parameter Value

Simple and smart way of passing default values of function parameters. Now, functions can be defined with default parameters values. If you miss to pass the function parameter, then missing or undefined values will be initialized with default parameters.

Prevent you from undefined error

Default parameter will prevent you from getting the undefined error. If you forget to write the parameter, it won’t return the undefined error, because the parameter is already defined in the function parameter.

Default parameter example in ES6 vs ES5

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//ES6
function f(a, b = 10, c = 20) {
  return x + y + z;
}
f(5) === 35;

//ES5
function f(a, b, c) {
  if (b === undefined) y = 10;
  if (c === undefined) c = 20;
  return x + y + z;
}
f(1) === 35;

2.2 Rest Parameter

Easy way to pass rest parameters with three dots (…) with parameter name. With the help of rest parameter, you can pass an indefinite number of arguments as an array.

A function last parameter prefixed with ... which will cause all remaining arguments to be placed within a standard JavaScript array.

Only a last parameter can be a rest parameter.

Rest parameter are like an Array

One of the major difference between argument object and rest parameter is that, rest parameter are like real array instance, where argument object are not like a real array. This means that, you can apply array methods like sort, map, forEach or pop on it directly.

Rest parameter example in ES6 vs ES5

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//ES6
function f(a, b, ...z) {
  return (a + b) * z.length;
}
f(10, 20, "ZeptoBook", true, 5) === 25;

//ES5
function f(a, b) {
  var z = Array.prototype.slice.call(arguments, 2);
  return (a + b) * z.length;
}
f(10, 20, "ZeptoBook", true, 5) === 25;

3. Template Literals in ES6

String Interpolation

Concatenating the string in a more cleaner way. Template literals are string literals, which allow concatenated expression. String interpolation is one of the interesting feature of ES6. Prior to ES6, we use double or single quotes to concatenate string expression, which sometimes looks very weird and buggy.

Now, in ES6, template literals are enclosed by back-ticks (``) character instead of single or double quotes. You can find back-ticks at the top left of your keyboard under the esc key.

Template literals has placeholders with $ sign and curly braces like ${expression}. $ sign is mandatory for interpolation.

Example of string concatenation in ES6 vs ES5

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//ES6
var product = { quantity: 20, name: "Macbook", unitprice: 1000 };
var message = `I want to buy ${product.name},
for a total of ${product.unitprice * product.quantity} bucks?`;

//ES5
var product = { quantity: 20, name: "Macbook", unitprice: 1000 };
var message =
  "I want to buy " +
  product.name +
  ",\n" +
  "for a total of " +
  product.unitprice * product.quantity +
  " bucks?";

4. Enhanced Object Properties in ES6

Property Shorthand

Shorter syntax for defining object properties. Prior to ES6, every object property needs to be either getter-setter or key-value pair. This has been completely changed in ES6. In ES6, there is a concise way for defining the object properties. You can define complex object properties in a much cleaner way now.

1
2
3
4
5
6
7
8
9
//ES6
var x = 0,
  y = 0;
obj = { x, y };

//ES5
var x = 0,
  y = 0;
obj = { x: x, y: y };

Method Properties

Support for method notation in object properties definitions. In the same way, which we discussed above, we can now define object methods concisely and in a much cleaner way.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//ES6
obj = {
    add (a, b) {
        
    },
    multi (x, y) {
        
    },

}

//ES5
obj = {
    add: function (a, b) {
        
    },
    multi: function (x, y) {
        
    },

};

Reason 5: New Built-In Methods In ES6

Object Property Assignment

There is a new function to assign enumerable properties of one or more source objects into a destination object.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//ES6
var dest = { quux: 0 };
var src1 = { foo: 1, bar: 2 };
var src2 = { foo: 3, baz: 4 };
Object.assign(dest, src1, src2);
dest.quux === 0;
dest.foo === 3;
dest.bar === 2;
dest.baz === 4;

//ES5
var dest = { quux: 0 };
var src1 = { foo: 1, bar: 2 };
var src2 = { foo: 3, baz: 4 };
Object.keys(src1).forEach(function (k) {
  dest[k] = src1[k];
});
Object.keys(src2).forEach(function (k) {
  dest[k] = src2[k];
});
dest.quux === 0;
dest.foo === 3;
dest.bar === 2;
dest.baz === 4;

Array Element Finding

There is a new function to find an element in an array.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//ES6
[10, 30, 40, 20]
  .find((x) => x > 30) // 40
  [(10, 30, 40, 20)].findIndex((x) => x > 30) // 20

  [
    //ES5
    (10, 30, 40, 20)
  ].filter(function (x) {
    return x > 30;
  })[0]; // 40
// no such function in ES5

String Repeating

There is a new string repeating functionality as well.

1
2
3
4
5
6
7
//ES6
" ".repeat(5 * depth);
"bar".repeat(3);

//ES5
Array(5 * depth + 1).join(" ");
Array(3 + 1).join("bar");

String Searching

New string functions to search for a sub-string

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//ES6
"zepto".startsWith("epto", 1); // true
"zepto".endsWith("zept", 4); // true
"zepto".includes("zep"); // true
"zepto".includes("zep", 1); // true
"zepto".includes("zep", 2); // false

//ES5
"zepto".indexOf("epto") === 1; // true
"zepto".indexOf("zept") === 4 - "zept".length; // true
"zepto".indexOf("ept") !== -1; // true
"zepto".indexOf("ept", 1) !== -1; // true
"zepto".indexOf("ept", 2) !== -1; // false

Number Type Checking

There are new functions for checking non-numbers and finite numbers.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//ES6
Number.isNaN(50) === false;
Number.isNaN(NaN) === true;

Number.isFinite(Infinity) === false;
Number.isFinite(-Infinity) === false;
Number.isFinite(NaN) === false;
Number.isFinite(50) === true;

//ES5
var isNaN = function (n) {
  return n !== n;
};
var isFinite = function (v) {
  return (
    typeof v === "number" && !isNaN(v) && v !== Infinity && v !== -Infinity
  );
};
isNaN(50) === false;
isNaN(NaN) === true;

isFinite(Infinity) === false;
isFinite(-Infinity) === false;
isFinite(NaN) === false;
isFinite(50) === true;

Number Safety Checking

There is an in-built function to check whether an integer number is in the safe range.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//ES6
Number.isSafeInteger(50) === true;
Number.isSafeInteger(1208976886688) === false;

//ES5
function isSafeInteger(n) {
  return (
    typeof n === "number" &&
    Math.round(n) === n &&
    -(Math.pow(2, 53) - 1) <= n &&
    n <= Math.pow(2, 53) - 1
  );
}
isSafeInteger(50) === true;
isSafeInteger(1208976886688) === false;

Number Truncation

There is a mathematical function to truncate a floating number to its integral parts, completely dropping the fractional part.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//ES6
console.log(Math.trunc(12.7)); // 12
console.log(Math.trunc(0.4)); // 0
console.log(Math.trunc(-0.4)); // -0

//ES5
function mathTrunc(x) {
  return x < 0 ? Math.ceil(x) : Math.floor(x);
}
console.log(mathTrunc(12.7)); // 12
console.log(mathTrunc(0.4)); // 0
console.log(mathTrunc(-0.4)); // -0

Summary

Javascript surely isn’t a perfect language. It has various imperfections. In the course of recent years, developers have gotten increasingly more involvement with the JavaScript ES5, which has lead to enhancements. ES6 brings many engrossing features that were not seen in previous version like ES5.

Further Reading

Angular 7 CRUD With Node.JS API

Eleven Ways To Learn Javascript Array Iteration Effectively

JavaScript Fundamentals Every Beginner Should Know

Share on

Adesh
WRITTEN BY
Adesh
Technical Architect