what is es6 in javascript code example

Example 1: js anonymous function es6

// (param1, param2, paramN) => expression

// ES5
var multiplyES5 = function(x, y) {
  return x * y;
};

// ES6
const multiplyES6 = (x, y) => { return x * y };

Example 2: explain js es6

explain js es6

Example 3: javascript es6

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.