“JS TILDA” Respostas de código

JS TILDA

var foo = "hello world";

if (~foo.indexOf("w")) {
  // item in list
} else {
  // item not in list
}
Puzzled Puffin

JS TILDA

var foo = "hello world";

foo.includes("w"); // true
foo.includes("z"); // false
Puzzled Puffin

Respostas semelhantes a “JS TILDA”

Perguntas semelhantes a “JS TILDA”

Mais respostas relacionadas para “JS TILDA” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código