Answers for "javascript check if variable is string or array"

3

js check if is array

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

how to check if array

// Check if something is an Array 
// just like you do with "typeof"
Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false
Posted by: Guest on October-14-2020

Code answers related to "javascript check if variable is string or array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language