Answers for "how to check is array or not in javascript"

21

if object is array javascript

Array.isArray(object);
Posted by: Guest on April-08-2020
3

js check if is array

if(Array.isArray(colors)){
    //colors is an array
}
Posted by: Guest on December-30-2020
2

how to check if something is array javascript

function isArray(value) {
    return Object.prototype.toString.call(value) === "[object Array]";
}
Posted by: Guest on May-06-2020

Code answers related to "how to check is array or not in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language