Check If Typeof Array Javascript Code Example


Example 1: if object is array javascript

Array.isArray(object);

Example 2: javascript determine array type

var data = ['a', 'b', 'c'] var isArray = Array.isArray(data) console.log(isArray)

Example 3: javascript typeof array

Array.isArray(arr)

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?