document.write("Array.isArray([]) = " + Array.isArray([]) + "<br />");
document.write("Array.isArray([1]) = " + Array.isArray([1]) + "<br />");
document.write("Array.isArray(new Array()) = " + Array.isArray(new Array()) + "<br />");
document.write("Array.isArray(Array.prototype) = " + Array.isArray(Array.prototype) + "<br />");
document.write("Array.isArray() = " + Array.isArray() + "<br />");
document.write("Array.isArray({}) = " + Array.isArray({}) + "<br />");
document.write("Array.isArray(null) = " + Array.isArray(null) + "<br />");
document.write("Array.isArray(100) = " + Array.isArray(100) + "<br />");
document.write("Array.isArray(undefined) = " + Array.isArray(undefined) + "<br />");
document.write("Array.isArray('Array') = " + Array.isArray('Array') + "<br />");
document.write("Array.isArray(true) = " + Array.isArray(true) + "<br />");
document.write("Array.isArray(false) = " + Array.isArray(false) + "<br />");
var arr = ['a', 'b', 'c', 'd', 'e'];
document.write("Array.isArray(arr) = " + Array.isArray(arr) + "<br />");
var n = 9;
document.write("Array.isArray(n) = " + Array.isArray(n) + "<br />");
/*
run
Array.isArray([]) = true
Array.isArray([1]) = true
Array.isArray(new Array()) = true
Array.isArray(Array.prototype) = true
Array.isArray() = false
Array.isArray({}) = false
Array.isArray(null) = false
Array.isArray(100) = false
Array.isArray(undefined) = false
Array.isArray('Array') = false
Array.isArray(true) = false
Array.isArray(false) = false
Array.isArray(arr) = true
Array.isArray(n) = false
*/