check if object is an array code example

Example 1: if object is array javascript

Array.isArray(object);

Example 2: javascript check if is array

var colors=["red","green","blue"];

if(Array.isArray(colors)){
    //colors is an array
}

Example 3: js check if array

Array.isArray([1, 2, 3]);	// true
Array.isArray('asdf');		// false

Example 4: check object in array javascript

var obj = {a: 5};
var array = [obj, "string", 5]; // Must be same object
array.indexOf(obj) !== -1 // True

Tags:

Php Example