Posted on December 5, 2018 by Arrow Functions//ES5var x = function(x,y){ return x*y; }//ES6cost x = (x,y) => x*y;Share this:Click to share on Twitter (Opens in new window)Click to share on Facebook (Opens in new window)Related