Jump to content

Question about Array's


Kruk87

Recommended Posts

I have a short code:

<!DOCTYPE html><html><body><p id="demo"></p><script>var fruits = [];document.getElementById("demo").innerHTML = isArray(fruits);function isArray(myArray) {    return myArray.constructor.toString().indexOf("Array");}</script></body></html>

Can someone explain to me why this function returns 9 ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...