“Slice JavaScript String” Réponses codées

Slice JavaScript String

const str = 'The quick brown fox jumps over the lazy dog.';

console.log(str.slice(31));
// expected output: "the lazy dog."

console.log(str.slice(4, 19));
// expected output: "quick brown fox"
Expensive Eland

Tranche de cordes

string word = "hello";
string ordw = word.Substring(1) + word.Substring(0, 1);
Amused Angelfish

JavaScript Slice String du caractère

var input = 'john smith~123 Street~Apt 4~New York~NY~12345';

var fields = input.split('~');

var name = fields[0];
var street = fields[1];
Lokesh003

Épissure de cordes

newStr = str.split(''); // or newStr = [...str];
newStr.splice(2,5);
newStr = newStr.join('');
GutoTrosla

La méthode de chaîne JavaScript Slice

// You use this method to cut out a substring from an entire string.
// We will use this method to cut out the remaining part of a word (excluding the first letter):

const word = "freecodecamp"

const remainingLetters = word.substring(1)
// reecodecamp
OHIOLee

Réponses similaires à “Slice JavaScript String”

Questions similaires à “Slice JavaScript String”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code