Answers for "how to check on array is array or not 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
3

js check if is array

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

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language