Answers for "js check if array condition"

3

js check if array

Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false
Posted by: Guest on July-19-2020
1

js test if array

if(Array.isArray(myVarToTest)) {
	// myVatToTest is an array
} else {
	// myVarToTest is not an array
}
Posted by: Guest on September-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language