String slicing in JavaScript ✂️【3 minutes】

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 พ.ย. 2024

ความคิดเห็น • 24

  • @BroCodez
    @BroCodez  2 ปีที่แล้ว +13

    // 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);

    • @joyceasante8292
      @joyceasante8292 ปีที่แล้ว +2

      Practicing...
      let fullName = "Spicy Spy";
      let lastName;
      //firstName = fullName.slice(0,9);
      //lastName = fullName.slice(10);
      firstName = fullName.slice(0, fullName.indexOf(" "));
      lastName = fullName.slice(fullName.indexOf(" ")+ 1);
      console.log(firstName);
      console.log(lastName);

  • @denhafiz1860
    @denhafiz1860 2 ปีที่แล้ว +5

    Thanks bro! I really like your style of explaining things, easy to understand for me as a beginner.

  • @hoatranminh5216
    @hoatranminh5216 ปีที่แล้ว +2

    Great teacher as always, my friend

  • @shashikantm9135
    @shashikantm9135 2 ปีที่แล้ว +3

    Thank you every video is practical 🤗

  • @JoJo-wz4ez
    @JoJo-wz4ez ปีที่แล้ว +3

    The Bro we needed!

  • @TheEvertonDias
    @TheEvertonDias ปีที่แล้ว +1

    Thanks, Bro!

  • @MrLoser-ks2xn
    @MrLoser-ks2xn ปีที่แล้ว

    Thanks!

  • @lucabinder9829
    @lucabinder9829 2 ปีที่แล้ว

    That was spicy 🔥

  • @GPax96
    @GPax96 2 ปีที่แล้ว

    thankYouBro.slice();

  • @adamnusier7397
    @adamnusier7397 2 ปีที่แล้ว

    Thanks bro

  • @tariqal-qassab5972
    @tariqal-qassab5972 7 หลายเดือนก่อน

  • @Jerry-oq2le
    @Jerry-oq2le ปีที่แล้ว

    Ily

  • @shemicajean-baptiste78
    @shemicajean-baptiste78 2 ปีที่แล้ว

    👏

  • @jetty_19
    @jetty_19 ปีที่แล้ว +1

    what if the name is long? what would be the syntax?

    • @shadyawad5383
      @shadyawad5383 ปีที่แล้ว +2

      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);

  • @Alexffire4808
    @Alexffire4808 10 หลายเดือนก่อน

    How much do you charge for tuition?

  • @anlberkearslantas3813
    @anlberkearslantas3813 2 ปีที่แล้ว

    SQRRRRT for the algorithm

  • @clrkkdd12
    @clrkkdd12 2 ปีที่แล้ว

    👊🏽

  • @MohyDev
    @MohyDev 2 ปีที่แล้ว

    Wubba Lubba Dub-Dub, For the algorithm!

  • @kartikchauhan3692
    @kartikchauhan3692 2 ปีที่แล้ว

    random comment

  • @Spunky_Tx
    @Spunky_Tx 4 หลายเดือนก่อน

    Fredhhrrggv ❤