Answers for "how to check if an object is an array or not"

21

if object is array javascript

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

js check if array

Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false
Posted by: Guest on July-19-2020

Code answers related to "how to check if an object is an array or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language