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

4

check if a variable is array in javascript

// inside if else check
if(Array.isArray(myVarToTest)) {
	// myVatToTest is an array
} else {
	// myVarToTest is not an array
}
Posted by: Guest on January-08-2021
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

check if is array javascript

if(Object.prototype.toString.call(someVar) === '[object Array]') {
    alert('Array!');
}
Posted by: Guest on September-19-2021

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language