Answers for "check if a letter is in string js"

6

js check if string contains character

"FooBar".includes("oo"); // true

"FooBar".includes("foo"); // false

"FooBar".includes("oo", 2); // false
Posted by: Guest on June-12-2020
-1

check if something is a letter in js

string.charAt(1).toUpperCase() !== string.charAt(1).toLowerCase()
Posted by: Guest on December-10-2020

Code answers related to "check if a letter is in string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language