Answers for "javascript type array"

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
3

js check if is array

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

js is of type array

Array.isArray([1, 2, 3]);  // true
Array.isArray({foo: 123}); // false
Array.isArray('foobar');   // false
Array.isArray(undefined);  // false
Posted by: Guest on January-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language