js 判断数组的四种方法
通过instanceof运算符用于检验构造函数的prototype 属性是否出现在对象的原型链中的任何位置,返回一个布尔值
let arr = [];
let a = arr instanceof Array;
2022-09-05