Top 10 JavaScript Coding Interview Question and Answers 🔥 MUST WATCH BEFORE ATTENDING NEXT INTERVIEW

Поділитися
Вставка
  • Опубліковано 19 жов 2024

КОМЕНТАРІ • 36

  • @ankitamaru9712
    @ankitamaru9712 3 місяці тому +1

    Helpful mind build tricks snippets. Thank you

  • @kishorjha5028
    @kishorjha5028 4 місяці тому +3

    love this series sir , please make more video like this

  • @ketanthorat4337
    @ketanthorat4337 4 місяці тому +1

    @Vasanth Bhat those videos are total gems for interviews. Thank you sir for sharing them

  • @ore_wa_king
    @ore_wa_king 4 місяці тому +1

    Hi Vsant, thanks for the video.
    I got all the 10 snippets correctly, thanks to your earlier videos 🙌

  • @ore_wa_king
    @ore_wa_king 4 місяці тому +1

    Hi Vasant, thanks for the video.
    I got all the snippets correctly, thanks to your other videos 🙌

  • @ianuj4231
    @ianuj4231 13 днів тому +1

    function createIncrement() {
    let count = 0;
    function increment() {
    count++;
    console.log(count);
    }
    function log() {
    let message = `Count is ${count}`;
    console.log(message);
    }
    return [increment, log]; // when this has finished returning, closure forms with child functions
    }
    const[increment, log] = createIncrement();
    increment();
    increment();
    increment();
    log();
    //most imprttant question.. same instance of count variable will be shared by increment() and log() ... hence 1 2 3 1

  • @ayaniegain
    @ayaniegain 4 місяці тому +1

    Suppose I'm a frontend developer, but I want to build a project like a video calling app or a WhatsApp messenger. I think in that case I need to learn backend concepts as well.
    Is it justified to say that a project of this type can be built with only frontend skills, considering that I'm only a frontend developer?

    • @careerwithvasanth
      @careerwithvasanth  4 місяці тому

      Hi, Join our 3100+ member Career with Vasanth telegram group here, you can discuss things like this and a lot of opening related information is also shared here: t.me/uncommongeek

    • @ayaniegain
      @ayaniegain 4 місяці тому

      @@careerwithvasanth thankyou

  • @mahalingappabirajdar5285
    @mahalingappabirajdar5285 3 місяці тому

    Thanks for the great tips, I really appreciate them

  • @SumitSharma-do2uc
    @SumitSharma-do2uc 3 дні тому +1

    bhai or thodi low voice m record krni thi video...abhi voice bhot jyada h next time please be remember

  • @shubhanshusahuu
    @shubhanshusahuu 4 місяці тому +1

    Helpful video

  • @mukulyadav6354
    @mukulyadav6354 4 місяці тому +2

    can you please zoom the ide from next time

  • @rajeshshetty1972
    @rajeshshetty1972 Місяць тому +1

    typeof null is object

  • @khanapeena2191
    @khanapeena2191 4 місяці тому +1

    🔥

  • @ankitamaru9712
    @ankitamaru9712 3 місяці тому +1

    Typeof null is object

  • @ngayathri1818
    @ngayathri1818 4 місяці тому +1

    Typeof null is object in JS

  • @seshasai3084
    @seshasai3084 4 місяці тому +1

    pls do videos in dark mode its effecting our eyes
    in the night time

    • @careerwithvasanth
      @careerwithvasanth  4 місяці тому

      Noted, from next video onwards it will be in dark mode.

  • @hkdelhivlogs
    @hkdelhivlogs 4 місяці тому +1

    Ans 1: 1 2 1

  • @funbuzzz01
    @funbuzzz01 4 місяці тому +1

    8/10

  • @madhanrock5390
    @madhanrock5390 4 місяці тому +2

    Exercise 1: 1,2,1 because of closure behavior
    Exercise 2: 'DATA RETRIEVED' after 1500ms
    Exercise 3: function greet is hoisted, sayHi is not hoisted
    O/P:
    'Hello John'
    'Hi there'
    Exercise 7: If want to print the actual output then we need call like
    const greet = person.greet.bind(person)
    greet()

  • @surajsuryawanshi864
    @surajsuryawanshi864 Місяць тому

    6/10

  • @nuthanam49
    @nuthanam49 4 місяці тому +1

    type of null is object