Skip to content

Instantly share code, notes, and snippets.

@jaxxreal
Created August 16, 2013 12:31
Show Gist options
  • Save jaxxreal/6249493 to your computer and use it in GitHub Desktop.
Save jaxxreal/6249493 to your computer and use it in GitHub Desktop.
check var is array
if (var instanceof Array)
{
alert "Var is array!";
}
else
{
alert "Var isn't array!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment