3 Differences Between Arrow Functions And Regular Functions

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2025

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

  • @coralanapdx
    @coralanapdx 2 หลายเดือนก่อน +1

    I seriously appreciate this video

  • @Sif-x4l
    @Sif-x4l 5 หลายเดือนก่อน +3

    Thank you for giving me a good introduction to the differences between the two. I see they are mostly syntax differences. What are some situations where it would be preferred to use one over the other?

    • @user_52577
      @user_52577 2 หลายเดือนก่อน +1

      not exactly Syntax!
      arrow function's dynamically get context from where they are being invoked unlike arrow function which inherits context from the parent scope irrespective of from where they are invoked.

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

    Nice explanation. Ty

  • @SurajNyavanandi
    @SurajNyavanandi 7 หลายเดือนก่อน +6

    short and sweet

    • @self-taughtdev
      @self-taughtdev  7 หลายเดือนก่อน

      Don't like all the fluff everyone else puts in their videos

  • @JohnDavis-f9m
    @JohnDavis-f9m หลายเดือนก่อน

    Thank you!

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

    Nice one

  • @amankhanal2764
    @amankhanal2764 8 หลายเดือนก่อน +1

    thanks boss

  • @vibha3031
    @vibha3031 27 วันที่ผ่านมา +1

    👍👍

  • @hustlerking4295
    @hustlerking4295 7 วันที่ผ่านมา

    Ok Dude, but what is the exact advantage of using arrow function over normal function?
    You should have mentioned it.

    • @self-taughtdev
      @self-taughtdev  2 วันที่ผ่านมา

      It’s like everything in code. It depends on the situation. Some situations you should still use “normal” functions. Some situations you should use arrow functions. Eg do you need a new execution context and to rebind ‘this’ or is that going to cause more problems lol