Skip to content

Instantly share code, notes, and snippets.

@codeallday31
Last active July 17, 2023 08:41
Show Gist options
  • Save codeallday31/d9cc8afdc7be3035159f690e492f6e03 to your computer and use it in GitHub Desktop.
Save codeallday31/d9cc8afdc7be3035159f690e492f6e03 to your computer and use it in GitHub Desktop.
checking value if array
function isArray(x) {
return ((typeof x) == "object") && (x["length"] != null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment