Answers for "how to check variable is 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
2

javascript determine array type

var data = ['a', 'b', 'c']
var isArray = Array.isArray(data)
console.log(isArray)
Posted by: Guest on May-04-2020

Code answers related to "how to check variable is array or not in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language