Answers for "check if array has items in it js"

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
2

how to check if something is array javascript

function isArray(value) {
    return Object.prototype.toString.call(value) === "[object Array]";
}
Posted by: Guest on May-06-2020

Code answers related to "check if array has items in it js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language