Answers for "check whether array or not in javascript"

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
21

if object is array javascript

Array.isArray(object);
Posted by: Guest on April-08-2020

Code answers related to "check whether array or not in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language