As mention in document https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions/Arrow_functions
Arrow functions do not have prototype property
but when I run this on fiddle, why does it gives an object?
http://es6console.com/iwyii5vm/
Why it is giving a object?
var Foo = () => {};
console.log(Foo.prototype); 
 
     
     
     
    
