function classof(o) { if(o === null) { return "Null"; } if(o === undefined) { return "Undefined"; } return Object.prototype.toString.call(o).slice(8, -1); }
时间: 2024-10-12 08:13:05
function classof(o) { if(o === null) { return "Null"; } if(o === undefined) { return "Undefined"; } return Object.prototype.toString.call(o).slice(8, -1); }