JavaScript map() method in 7 minutes! 🗺️

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

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

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

    // .map() = accepts a callback and applies that function
    // to each element of an array, then return a new array
    // ------------ EXAMPLE 1 ------------
    const numbers = [1, 2, 3, 4, 5];
    const squared = numbers.map(square);
    const cubed = numbers.map(cube);
    console.log(cubed);
    function square(element){
    return Math.pow(element, 2);
    }
    function cube(element){
    return Math.pow(element, 3);
    }
    // ------------ EXAMPLE 2 ------------
    const students = ["Spongebob", "Patrick", "Squidward", "Sandy"];
    const studentsUpper = students.map(upperCase);
    const studentsLower = students.map(lowerCase);
    console.log(studentsLower);
    function upperCase(element){
    return element.toUpperCase();
    }
    function lowerCase(element){
    return element.toLowerCase();
    }
    // ------------ EXAMPLE 3 ------------
    const dates = ["2024-1-10", "2025-2-20", "2026-3-30"];
    const formattedDates = dates.map(formatDates);
    console.log(formattedDates);
    function formatDates(element){
    const parts = element.split("-");
    return `${parts[1]}/${parts[2]}/${parts[0]}`;
    }

    • @Blitz61wasd
      @Blitz61wasd ปีที่แล้ว

      Do django course please

    • @ENDTIM3SPRODUCTIONS
      @ENDTIM3SPRODUCTIONS ปีที่แล้ว

      do a Lua full course

    • @carlody-kr6zn
      @carlody-kr6zn 6 หลายเดือนก่อน

      can you show the basic example on how to display first before applying with operation.

  • @seunopeyemi8120
    @seunopeyemi8120 9 หลายเดือนก่อน +14

    Hey Bro! you have a way of making me undertstand every topics that i've ever struggled with.
    God bless you abundantly!!

  • @amishbhaskar3264
    @amishbhaskar3264 ปีที่แล้ว +21

    bro i used to hate programming and computers in general.Also the tutorials always tested my patience . i litreally used to yawn in online tutorial. but after discovering you , tables turned !! i just joined collage and our first language is c program.i just discovered you and i forget i had to make notes i was just watching and doing ehat ypu were demonstrating . i finally know how to study this subjec and hass fallen in live with .THANKS A LOT 😇😇😇😇

    • @samueldayo9261
      @samueldayo9261 11 หลายเดือนก่อน

      C has similarities as JavaScript

  • @Chlorine-DB
    @Chlorine-DB 11 หลายเดือนก่อน +4

    This guy is the goat at teaching how to code

  • @LizyAd
    @LizyAd 9 หลายเดือนก่อน +1

    Thank you so much! You're skilled with the gift of teaching.

  • @SaiTaX_the_Chile_boi
    @SaiTaX_the_Chile_boi 7 หลายเดือนก่อน +1

    bro code truly is a bro, you have just saved my ass, I couldnt understand where to get the parameters.

  • @vinzanity68
    @vinzanity68 9 หลายเดือนก่อน +1

    Now you are my favorite coding teacher 😅

  • @hashk2041
    @hashk2041 27 วันที่ผ่านมา

    Very well explained. Thanks bro!

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

    Super easy to follow along with thanks!

  • @mookjais
    @mookjais 5 หลายเดือนก่อน +1

    Very easy to understand, thanks!

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

    That last example was so helpful

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

    This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.

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

    thank you man

  • @mjylove2
    @mjylove2 9 หลายเดือนก่อน

    thanks to you i understood the map() method ! thank you again

  • @tavidev
    @tavidev ปีที่แล้ว

    TypeScript full course when?

  • @soyeonpark9205
    @soyeonpark9205 27 วันที่ผ่านมา

    THANK YOUUUUUUUUUUUUUUUUU

  • @ENDTIM3SPRODUCTIONS
    @ENDTIM3SPRODUCTIONS ปีที่แล้ว

    @BroCodez can you do a Lua full course

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

    Thank you for your great work. I have a question.
    Is it better to write:
    const studentsUpper = students.map(element => element.toUpperCase())
    console.log(studentsUpper);
    instead of write a function? I've heard that the way I just wrote it more modern and even has a better readablitiy. Is it true? Of course unless we are gonna re-use it then I think a function is a better way.
    Thanks again.

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

    Do django course please

  • @soyeonpark9205
    @soyeonpark9205 27 วันที่ผ่านมา

    we'd like you to teach us React JS pleaseeeeee

  • @gamerkit2031
    @gamerkit2031 ปีที่แล้ว

    I just love IT not YOU you know in the past vacances I just decouvered you and I always wanted to learn to code but I saw a video about python and I deractly begin coding (Sorry if my english is bad)
    now I am in python and I really progress and cause of you I learned to be patience and to solve my errors.
    Last thing to say
    I LOVE YOUR CONTENT YOU ARE THE BEST

  • @jadronaldo566
    @jadronaldo566 ปีที่แล้ว

    thank you bro!

  • @CodeDevBoy
    @CodeDevBoy 6 หลายเดือนก่อน

    How parts can be the array ?

  • @Misterkennedy04
    @Misterkennedy04 6 หลายเดือนก่อน

    it shows the month and the date but the year says undefined am I doing something wrong?

    • @N1rOx
      @N1rOx 9 วันที่ผ่านมา

      make sure you're using the correct index

  • @CodeWithAbed
    @CodeWithAbed 6 หลายเดือนก่อน

    0:01 No you don't gotta explain it 😭

  • @AsahiLume
    @AsahiLume ปีที่แล้ว

    mans quick

  • @arunbalakrishnan8978
    @arunbalakrishnan8978 7 หลายเดือนก่อน

    So simple....

  • @stacielac9562
    @stacielac9562 3 หลายเดือนก่อน

    hello world !😂😂

  • @ice-o3i
    @ice-o3i 4 หลายเดือนก่อน

    Hi

  • @dhiyanabdurazack5257
    @dhiyanabdurazack5257 8 หลายเดือนก่อน

    HI
    DABA DAB ADA DABA DAB AEI DAB AEI DABA EO FUSHCI SKITHCI CIHI