x = (arg1,arg2)=>{return arg1+arg2} y = function(arg1,arg2){ return arg1+arg2; } //not so sure z = (arg1,arg2)=>arg1+arg2; All three should be the same addition function.