Skip to content

Instantly share code, notes, and snippets.

@kanghyojun
Last active March 19, 2018 09:55
Show Gist options
  • Save kanghyojun/da8e686a32fe549bd4dea595b7ade3c8 to your computer and use it in GitHub Desktop.
Save kanghyojun/da8e686a32fe549bd4dea595b7ade3c8 to your computer and use it in GitHub Desktop.
const wrongCond = 1 in [0, 2, 3]; // true
const rightCond = [0, 2, 3].indexOf(1) !== -1; // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment