“Indexação de string em JS” Respostas de código

Indexação de string em JS

"How are you?".slice(8, 11);
"How are you?"[8];
Green Team

JavaScript Indexof

//indexOf getting index of array element, returns -1 if not found
var colors=["red","green","blue"];
var pos=colors.indexOf("blue");//2

//indexOf getting index of sub string, returns -1 if not found
var str = "We got a poop cleanup on isle 4.";
var strPos = str.indexOf("poop");//9
Grepper

Respostas semelhantes a “Indexação de string em JS”

Perguntas semelhantes a “Indexação de string em JS”

Mais respostas relacionadas para “Indexação de string em JS” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código