Answers for "js checking if somthing is a arrau"

9

check if parameter is array 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
0

check if is array javascript

if(Object.prototype.toString.call(someVar) === '[object Array]') {
    alert('Array!');
}
Posted by: Guest on September-19-2021

Code answers related to "js checking if somthing is a arrau"

Code answers related to "Javascript"

Browse Popular Code Answers by Language