es6console
es6console copied to clipboard
this in the context of window does not print anything.
function traditionalFn(){
console.log(this)
}
traditionalFn();
or
var aFunction=()=> console.log(this)
aFunction();
does not print window in the console.
Thank you for reporting this, I am going to take a look at it.