Javascript中判断变量是数组还是对象

2024年11月16日 11:59
有2个网友回答
网友(1):

判断是否是数组
Array.isArray(arrayInstance);

判断是否是对象Object.prototype.toString.call(objectInstance) === '[object object]'

网友(2):

使用 instanceof 操作符