Skip to content

Instantly share code, notes, and snippets.

@x1unix
Created September 9, 2016 11:40
Show Gist options
  • Save x1unix/fabb5ff713b89bea0d469793c0555ba9 to your computer and use it in GitHub Desktop.
Save x1unix/fabb5ff713b89bea0d469793c0555ba9 to your computer and use it in GitHub Desktop.
indexOf as boolean
String.prototype.contains = function(char) {
return !!(~this.indexOf('1'));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment