how to check if array

JavaScript
Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false// Check if something is an Array 
// just like you do with "typeof"
Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false
Source

Also in JavaScript: