NodeJs实用技巧

判断数组类型为 Array

Object.prototype.toString.call(obj) == '[object Array]'

判断对象类型为 Object

Object.prototype.toString.call(obj) == '[object Object]'

判断对象类型为 Number

Object.prototype.toString.call(obj) == '[object Number]'

你可能感兴趣的:(NodeJs实用技巧)