I am bit confused over this.
Please find the code as below.
var o={
printToConsole: function(f){
f(1);
}
};
o.printToConsole(console.log);
//TypeError: Illegal invocation
// I get a TypeError
From the definition of console.log we get this
`function log() { [native code] }`
In chrome, which clearly displays that it doesn't take any argument, though when we try to print things on console we do write like this i.e. pass the argument to console.log.
console.log('Take me on Console');
Why I am getting this TypeError and how this console.log behaves in chrome?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…