javascript es6

JavaScript
explain js es6Default Parameters in ES6.
Template Literals in ES6.
Multi-line Strings in ES6.
Destructuring Assignment in ES6.
Enhanced Object Literals in ES6.
Arrow Functions in ES6.
Promises in ES6.
Block-Scoped Constructs Let and Const.const array = [1, 2, 3, 4, 5];

// checks whether an element is even
const even = (element) => element % 2 === 0;

console.log(array.some(even));
// expected output: true
ES6 refers to version 6 of the ECMA Script programming language
It is a major enhancement to the JavaScript language, and adds many more
features intended to make large-scale software development easier.

ECMAScript, or ES6, was published in June 2015.
It was subsequently renamed to ECMAScript 2015.
 It is a JavaScript standard meant to ensure the interoperability of Web pages across different Web browsers.
Source

Also in JavaScript: