“Die JavaScript -Zeichenfolge enthält” Code-Antworten

Überprüfen Sie, ob JavaScript Substring

const string = "javascript";
const substring = "script";

console.log(string.includes(substring));  //true
Batman

JavaScript String enthält

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

console.log(string.includes(substring));
Cautious Crane

String enthält in JavaScript

const string = "foo";
const substring = "oo";

console.log(string.includes(substring));
2 Programmers 1 Bug

JavaScript -Zeichenfolge enthält die Funktion

s = "Hello world";
console.log(s.includes("world"));
Curious Cormorant

JavaScript enthält 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)
Grepper

Die JavaScript -Zeichenfolge enthält

const s = 'I am going to become a FULL STACK JS Dev with Coderslang';

console.log(s.includes('FULL STACK'));     // true
console.log(s.includes('cheeseburger'));   // false
Mysterious Monkey

Ähnliche Antworten wie “Die JavaScript -Zeichenfolge enthält”

Fragen ähnlich wie “Die JavaScript -Zeichenfolge enthält”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen