Answers for "js string includes another string"

38

javascript string includes substring

var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
//use indexOf (it returns position of substring or -1 if not found)
Posted by: Guest on July-18-2019
0

Find specific string by using includes in javascript

const friendsList = ["Abir", "Lalkhan", "Lion", "Shamol", "Kabir", "Shabir"];
if (friendsList.includes("Lion")) {
    console.log("Lion is Exists");
}
//Output: Lion is Exists
Posted by: Guest on December-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language