“JS dostaje podstęp przed postacią” Kod odpowiedzi

JS dostaje sznur przed znakiem

var str = "JavaScript is the programming language of the Web.";

// this will return string before the word programming
var result = str.split('programming')[0]; 
// result : "JavaScript is the ";
MeVyom

JS otrzymuje pierwsze 3 znaki sznurka

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

JS dostaje podstęp przed postacią

//split string into an array and grab the first item

var streetaddress = addy.split(',')[0];
Ankur

Odpowiedzi podobne do “JS dostaje podstęp przed postacią”

Pytania podobne do “JS dostaje podstęp przed postacią”

Więcej pokrewnych odpowiedzi na “JS dostaje podstęp przed postacią” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu