谁能解释一下为什么这些代码可以检查数据类型?它们对我来说没有意义。我无法理解代码在幕后做了什么。提前致谢!
var toClass = {}.toString // {} is for what? toString is a method?
alert(toClass); // alert it I get a function? = > function toString() {[native code]}
alert( toClass.call( [1,2] ) )
alert( toClass.call( new Date ) )