Answers for "javascript if type array"

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
3

js check if array

Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false
Posted by: Guest on July-19-2020
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 "Javascript"

Browse Popular Code Answers by Language