Answers for "how to check if variable is an array js"

9

javascript check if is array

var colors=["red","green","blue"];

if(Array.isArray(colors)){
    //colors is an array
}
Posted by: Guest on July-22-2019
0

how to recognize an array in javascript

const array = [1, 2, 3];

Array.isArray(array);  // => true
Array.isArray(object); // => false
Array.isArray(string); // => false
Array.isArray(empty);  // => false

// other ways

({}).toString.call(array);   // => '[object Array]'
({}).toString.call(object);  // => '[object Object]'
({}).toString.call(string);  // => '[object String]'
({}).toString.call(empty);   // => '[object Null]'
Posted by: Guest on November-25-2020

Code answers related to "how to check if variable is an array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language