• 检测数组

    检测数组

    第一种instanceof Array 来检测数组

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

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

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