Answers for "contains function in js"

59

javascript string contains

var string = "foo",
    substring = "oo";

console.log(string.includes(substring));
Posted by: Guest on December-21-2019
8

javascript string contains function

s = "Hello world";
console.log(s.includes("world"));
Posted by: Guest on October-06-2020
3

javascript string contains

var email = "[email protected]";
if(email.includes("@")){
  console.log("Email is valid");
}
else{
  console.log("Email is not valid");
}
// includes return boolean, if your string found => true else => false
Posted by: Guest on June-19-2021
3

string contains javascript

const s1 = 'javascript';
const s2 = 'python';

console.log(s1.includes('script')); // true
console.log(s2.includes('script')); // false
Posted by: Guest on February-05-2021
1

string contains js

var str = "foobar"
var regex = /foo/g;
if (str.search(regex) !== -1) {
  alert("string conains foo!")
}
Posted by: Guest on December-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language