this in JavaScript | Front-end interview series Ep. 6

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • Front-end interview series : • JavaScript interview s...
    Reactjs series : • Reactjs tutorial
    React notes : / the_frontend_developer
    Learn CSS3 animations : • Front-end tutorials

Комментарии • 56

  • @tyrodev5281
    @tyrodev5281 3 года назад +5

    Just when I thought "this" was getting out of hand, you came to the rescue. Appreciate the time and effort you put in for all of us!!

  • @MyVikas25
    @MyVikas25 3 года назад +1

    For the person who was struggling with "this and arrow function" for hours. This video helped me alot. Same goes for the topic hoisting. It took me hours of internet search but still my dumb brain couldnt comprehend the topic. Thanks for the explanation. It helped me alot to understand the concept!

  • @nitinsoni9956
    @nitinsoni9956 2 года назад

    One of the most easiest and clear explanation on THIS in javascript. I guess if I ever need help on this, I would refer to THIS video.

  • @Sandhyausa
    @Sandhyausa 2 года назад

    Hi, I have studies 3 to 4 articles and videos. but none of them explained the way u have explained. Truly commendable. Subscribed the channel. Thank you so much. Keep-up the good work. God bless you dear :)

  • @shakeebarsalan7030
    @shakeebarsalan7030 2 года назад

    This is the video for this keyword. Literally the best explanation.

  • @DarshanKMANJUNATH
    @DarshanKMANJUNATH 3 года назад

    I was randomly watching js videos I saw a hoisting video which made me watch the full JS playlist. Amazing content and explanation, JS topics are clearly explained. The best thing is no ads we can watch without any interruption. Thanks

  • @triveniyadaw15
    @triveniyadaw15 Год назад

    Best videos ever, best explanation. Simran please come back with new videos. You are super talented.

  • @architverma862
    @architverma862 2 года назад

    These videos are pure gold.....unfortunate to see fewer views. but anyway keep going Simran with more like these well-explained videos.

  • @p_iconic_
    @p_iconic_ 3 года назад +2

    Waiting for the next one..!
    Thank you for the amazing series ..
    Really appreciate that. 🥰

  • @manojthayil7836
    @manojthayil7836 2 года назад

    Wow, what a fantastic explanation!! immediately subscribed your channel.

  • @anishagoyal6002
    @anishagoyal6002 2 года назад

    Very crisp and clear explanation..!!

  • @arvinddhakar739
    @arvinddhakar739 2 года назад

    after trying to understand this for so long but no success, but now understood in just 11 mins. Thanks for explaining this

  • @abhishekgavhale980
    @abhishekgavhale980 2 года назад

    you are brilliant and simple....i think you should start marking a videos even more

  • @akshatsingh7735
    @akshatsingh7735 Год назад

    Perfectly explained. Thank you.

  • @ShivamMishra-jx6hy
    @ShivamMishra-jx6hy 2 года назад

    Mam you are awesome I was struggling with 'this' keyword before watching this videos
    But 'this' keyword is very clear after watching this video

  • @rishabhpandey3880
    @rishabhpandey3880 3 года назад +1

    I have an interview setup on Monday and I am binge watching this series right now... And its really awesome. Hopefully, if I get the job I'll update here to you. Thank you Simran for making this series.

    • @krishaengineer9754
      @krishaengineer9754 3 года назад +1

      Hey, I am doing exactly the same!! I have an interview tomorrow as well and binging this playlist! what a coincidence :)

    • @rishabhpandey3880
      @rishabhpandey3880 3 года назад +1

      @@krishaengineer9754 Best of luck to you. Hope yu crack the interview 🤞

    • @chandanshetti2298
      @chandanshetti2298 3 года назад

      @@krishaengineer9754 Got the job?!

    • @chandanshetti2298
      @chandanshetti2298 3 года назад

      @@rishabhpandey3880 Got the job?!

    • @krishaengineer9754
      @krishaengineer9754 3 года назад

      @@chandanshetti2298 Still waiting to hear back!!

  • @shabeerahamed2129
    @shabeerahamed2129 Год назад

    next level knowledge 🔥

  • @kapil471
    @kapil471 3 года назад +1

    Understood at once 👍 thanks 🙌

  • @govinda399
    @govinda399 2 года назад

    Hey thank you so much yaaaaaaaar. seriously good grasp, i was so confused before

  • @hardikluhar4738
    @hardikluhar4738 3 года назад

    Excellent explanation & demonstrations of JavaScript "this"

  • @kimjihyun9153
    @kimjihyun9153 2 года назад

    I want to know why you stopped posting videos?? Please come back you're gonna be the saviour of my upcoming interviews for sure! please post lot more topics in javascript. Thank u so much!!

  • @shambhuwali6471
    @shambhuwali6471 2 года назад

    Thanks simran I failed to answer same concept in yday interview, but today you made me understand "this"

  • @jaypatel4130
    @jaypatel4130 Год назад +1

    awesome

  • @akshayshinde2403
    @akshayshinde2403 2 года назад

    Thanks for such a great explanation.

  • @pkmkb_0
    @pkmkb_0 2 года назад

    Thank you 3000 :) you are a good teacher !!

  • @sandeepmukherjee739
    @sandeepmukherjee739 3 года назад

    simran you are a great teacher loved the series today youtube recommended me anyways loved it

  • @anilmaurya55
    @anilmaurya55 3 года назад

    Very good, excellent explained, please make more javascript interview questions. Thanks

  • @christocdas1146
    @christocdas1146 2 года назад

    Well explained💯

  • @CharanTeja22
    @CharanTeja22 3 года назад

    Great work

  • @iamzuhayrhasan
    @iamzuhayrhasan 2 года назад +1

    Whats the difference between function expression and function declaration in JavaScript?

  • @2bitsbyab
    @2bitsbyab 2 года назад

    awesome explanation

  • @darkDay9211
    @darkDay9211 2 года назад

    You are legend !!!!

  • @pranayboreddy
    @pranayboreddy 2 года назад

    Hi Simran,
    I really like the way how to approach things. Glad I found you so early in my career.
    I have one question from this video.
    const obj = {
    radius: 1,
    perimeter: () => this.radius,
    };
    console.log(obj.perimeter());
    As you said arrow function always refers to where it was declared, here the perimeter is declared inside an obj but it refers to a global obj. Can you please explain?
    Thanks in advance

  • @mohsenparvar592
    @mohsenparvar592 3 года назад

    amazing :) ,amoung all the tutorials about "this" subject, ()=>this is the best

  • @mohammad-hosseinhashemian6804
    @mohammad-hosseinhashemian6804 3 года назад +2

    Was so helpful, thx

  • @khanfarman1
    @khanfarman1 2 года назад

    Hope you are well and good
    Why did you stop making videos on JS concepts? Your videos are helping us a lot in many ways.

  • @anoopdanil6250
    @anoopdanil6250 3 года назад +1

    Excellent vid😊, seek 9:58, what if sayHello is an arrow function, this points to window instead of obj.Why is that happening , i am a bit confused.

  • @shubham2118
    @shubham2118 3 года назад +1

    Thank you so much simran 👍

  • @Akhileshreddy
    @Akhileshreddy 3 года назад

    But sayBye function is not defined window why not come error

  • @adnancerttrain
    @adnancerttrain 3 года назад +1

    You are great.❤️

  • @ritikjain3975
    @ritikjain3975 3 года назад +1

    wonderful...thanks alotttt

  • @mohitkumardash888
    @mohitkumardash888 2 года назад

    What can i say ! Thank you so much 🙏

  • @Praxis_by_tanay_pingalkar
    @Praxis_by_tanay_pingalkar 3 года назад +2

    Which code editor is this

  • @raj-pl8xz
    @raj-pl8xz Год назад

    This is simran 😅

  • @neinamohamed7049
    @neinamohamed7049 3 года назад +1

    I Understand. help this video

  • @RajYadav-yh7vv
    @RajYadav-yh7vv 2 года назад

    Not clear. 'this' keyword bring more complex in term of output. you gave one simple example here and its not satisfactory for deep understanding

  • @SyedMoinuddinycs
    @SyedMoinuddinycs 8 дней назад

    your concept is not applicable for multiple nested objects, give a try

  • @svmathtutor
    @svmathtutor 3 года назад

    Excellent explanation & demonstrations of JavaScript "this"