Created
October 26, 2020 15:34
-
-
Save KyleMit/34cec025a48f32bfe67d4dca637fab4c to your computer and use it in GitHub Desktop.
Twitter - Includes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(~"apple".indexOf("a")) // true | |
console.log("apple".indexOf("a") >= 0) // true | |
console.log("apple".includes("a")) // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment