“JavaScript Get First 2 Char” Respostas de código

JavaScript Get First 2 Char

String.substring(0, 2);
//Return the first two characters of the string
//First parameter is the starting index, 0 corresponding to the first character
//Second parameter is the number of character to return
Alexandre Dao

JavaScript Obtenha os 10 primeiros caracteres de string

var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
Grepper

JS Obtenha três primeiros caracteres de corda

const string = "0123456789";
console.log(string.slice(0, 2)); // "01"
console.log(string.slice(0, 8)); // "01234567"
console.log(string.slice(3, 7)); // "3456"
Modern Mouse

Respostas semelhantes a “JavaScript Get First 2 Char”

Perguntas semelhantes a “JavaScript Get First 2 Char”

Mais respostas relacionadas para “JavaScript Get First 2 Char” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código