Skip to content

Instantly share code, notes, and snippets.

@liuxd
Created December 4, 2018 21:17
Show Gist options
  • Save liuxd/fd377d4747dfc0f9e50b535d23c2ecba to your computer and use it in GitHub Desktop.
Save liuxd/fd377d4747dfc0f9e50b535d23c2ecba to your computer and use it in GitHub Desktop.
[is_array() in JS]
var a = [], b = {};
console.log(Array.isArray(a)); // true
console.log(Array.isArray(b)); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment