Array类型 - 检测数组

优质
小牛编辑
118浏览
2023-12-01

第一种instanceof Array 来检测数组

  1. if(value instanceof Array){
  2. //数组操作
  3. }

第二种使用Array.isArray()来检测数组

  1. if(Array.isArray(value)){
  2. //数组操作
  3. }