// slice() extracts a section of a string // and returns it as a new string, // without modifying the original string let fullName = "Snoop Dogg"; let firstName; let lastName; //firstName = fullName.slice(0, 3); //lastName = fullName.slice(4); firstName = fullName.slice(0, fullName.indexOf(" ")); lastName = fullName.slice(fullName.indexOf(" ") + 1); console.log(firstName); console.log(lastName);
Thanks bro! I really like your style of explaining things, easy to understand for me as a beginner.
@hoatranminh5216 Жыл бұрын
Great teacher as always, my friend
@JoJo-wz4ez2 жыл бұрын
The Bro we needed!
@shashikantm91352 жыл бұрын
Thank you every video is practical 🤗
@lucabinder98292 жыл бұрын
That was spicy 🔥
@TheEvertonDias Жыл бұрын
Thanks, Bro!
@MrLoser-ks2xn Жыл бұрын
Thanks!
@adamnusier73972 жыл бұрын
Thanks bro
@GPax962 жыл бұрын
thankYouBro.slice();
@jetty_192 жыл бұрын
what if the name is long? what would be the syntax?
@shadyawad5383 Жыл бұрын
It would be the same. The length of the name doesn't matter since you would be using indexOf to set your slice values before and after the space. firstName = fullName.slice(0, fullName.indexOf(" ")); lastName = fullName.slice(fullName.indexOf(" ") + 1);