Frontend javascript fresher mock interview | Javascript | Ep.3

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

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

  • @unstoppable-ayush
    @unstoppable-ayush 6 месяцев назад +96

    Thank u sir, for giving me the opportunity to be interviewed❤

    • @CoderHarsh
      @CoderHarsh 6 месяцев назад +1

      Waah bhai 🎉

    • @thenextgyani6040
      @thenextgyani6040 5 месяцев назад +8

      From where did you learn JS ? You nailed it Bro ❤❤❤❤❤❤

    • @unstoppable-ayush
      @unstoppable-ayush 5 месяцев назад

      @@thenextgyani6040 Namste Javascript , Chai aur Javascript, Blogs

    • @unstoppable-ayush
      @unstoppable-ayush 5 месяцев назад

      ​@@thenextgyani6040Namste Javascript, Chai aur Javascript, Blogs

    • @MrAwesome9004
      @MrAwesome9004 4 месяца назад

      ​@@thenextgyani6040namaste javascript

  • @Suman-t5v
    @Suman-t5v 7 дней назад +2

    maybe not applicable for every scenario but
    function deepCopy(obj) {
    return JSON.parse(JSON.stringify(obj));
    }

  • @developer_ravi
    @developer_ravi 6 месяцев назад +12

    Thank you so mach for this type of series. I solved last interview question that is infinite comments... And now going to solve this question 😊

  • @r00k1ee
    @r00k1ee 6 месяцев назад +16

    whoa! just got the recommendation for your ep2 of this series and now ep3 came.

  • @shubhamvats1855
    @shubhamvats1855 2 месяца назад +2

    when i watched this interview my confidence comeback.... i like u r mock interview i learn many things from this video i will prepare very well.

    • @SemicolonGuy
      @SemicolonGuy  2 месяца назад

      Thanks for the support. New video bhi pasand ayegi vo bhi dekho ruclips.net/video/Rt392Oc2THs/видео.html

  • @TooniverseAnime
    @TooniverseAnime 2 месяца назад +3

    Reference MDN :-
    A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a closure gives a function access to its outer scope. In JavaScript, closures are created every time a function is created, at function creation time.

  • @AdityaKumar-vq5nk
    @AdityaKumar-vq5nk 6 месяцев назад +11

    Keep it up my friend Ayush ❤

  • @webdesignersandip7469
    @webdesignersandip7469 6 месяцев назад +5

    Previous interviews se bohot jyada easy tha

  • @pin2845
    @pin2845 3 месяца назад +5

    JSON.parse(JSON.stringify(object));

  • @08_tanmaybhansali2
    @08_tanmaybhansali2 2 месяца назад +2

    Solution of DeepCopy question
    const ritikRuns={name:"Ritik",score:10,ball:{type:{subType:"leather"}}}
    const otherRuns=deepCopy(ritikRuns)
    otherRuns.ball.type.subType="tennis"
    console.log(ritikRuns)
    console.log(otherRuns)
    function deepCopy(obj,createClone=true){
    if(createClone)obj={...obj}
    for(let key in obj){
    if(typeof(obj[key])==="object"){
    obj[key]=deepCopy(obj[key])
    }
    }
    return {...obj}
    }

    • @SemicolonGuy
      @SemicolonGuy  2 месяца назад

      Very nice. But bhai mujhe sirf 10 score Dia? Atleast century to krate

    • @08_tanmaybhansali2
      @08_tanmaybhansali2 2 месяца назад +1

      @@SemicolonGuy 😂😂 muje pata nahi tha bhaiya real name ritik hai apka warna definitely 💯 deta

    • @SemicolonGuy
      @SemicolonGuy  2 месяца назад

      @@08_tanmaybhansali2 hahahha

  • @AnkitRaj-zm3me
    @AnkitRaj-zm3me 6 месяцев назад +8

    Keep it up bro❤

  • @Devanshugoel
    @Devanshugoel 5 месяцев назад +6

    can you tell me how to prepare for react js internship
    what type of questions i need to focus on?????????

  • @Anonymous-d9b
    @Anonymous-d9b 4 месяца назад +8

    // Define an outer function
    function outerFunction(outerVariable) {
    // Define an inner function (closure)
    return function innerFunction(innerVariable) {
    console.log('Outer Variable: ' + outerVariable);
    console.log('Inner Variable: ' + innerVariable);
    };
    }
    // Create a closure by calling outerFunction
    const closureFunction = outerFunction('Hello');
    // Check the type of closureFunction
    console.log(typeof closureFunction); // "function"
    // Invoke the closure
    closureFunction('World');
    // Output:
    // Outer Variable: Hello
    // Inner Variable: World
    Conclusion: closure is a function is not a wrong statement .

    • @binamralamsal
      @binamralamsal 4 месяца назад +3

      From MDN, A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a closure gives you access to an outer function's scope from an inner function. In JavaScript, closures are created every time a function is created, at function creation time.
      Hence, closure is not a function. You are checking type of function, that's obviously not closure.

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад +1

      well answered by @binamralamsal

    • @Anonymous-d9b
      @Anonymous-d9b 4 месяца назад

      @@binamralamsal
      A closure is a function having access to the parent scope, even after the parent function has closed. From w3 school
      a closure is a function that has an environment of its own. By wikipedia
      simple.wikipedia.org/wiki/Closure_(computer_programming)

  • @priyeshpandey7128
    @priyeshpandey7128 19 дней назад +1

    Sir pls take my interview on Django. 😊❤

  • @ARUSHIGOMKALE-wk9zi
    @ARUSHIGOMKALE-wk9zi 5 месяцев назад +4

    Please share mock interview link

  • @ankuryadav7243
    @ankuryadav7243 4 месяца назад +3

    Hi I am 3rd year student doing BTech from a tier 3 college. Currently I don't know anything about development and dsa. Don't know how to start,from where to start. If you can guide me It will be very helpful for me

    • @nikolatesla9046
      @nikolatesla9046 4 месяца назад +2

      frist lean tech stack and then learn dsa..you easily understand dsa.i suggest learn python, java and .not.. dont choose mern

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад

      linkedin par connect krke msg krdo. bhai : linkedin.com/in/ritikcodes

    • @Nazish-x6c
      @Nazish-x6c 2 месяца назад

      I also have same promblem can you guide me too ?

  • @The_ancestor_of_Mars_humans
    @The_ancestor_of_Mars_humans 4 месяца назад +5

    chatgtp use kar le bhai interview deke kya hi kar lega, khud interviewer ko itna knowledge nahi rehta hai,

  • @draconianyt5174
    @draconianyt5174 4 месяца назад +1

    Itna acha explains kr raha hai bhai sir ne phele se question dedy tha kya

    • @SemicolonGuy
      @SemicolonGuy  3 месяца назад

      Mujhe bhi esa hi lga tha. Bnda prepared tha

  • @greenshaheen
    @greenshaheen 4 месяца назад +7

    he is right closure is a function. you are wrong

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад +2

      And from where did you learn this?

    • @greenshaheen
      @greenshaheen 4 месяца назад

      @@SemicolonGuy w3schools and linkedin

    • @greenshaheen
      @greenshaheen 4 месяца назад

      @@SemicolonGuy from linkedin and w3schools.

    • @greenshaheen
      @greenshaheen 4 месяца назад +3

      @@SemicolonGuy Bro! Plz don't delete my comment again and again. I said linkedin and W3Schools

    • @greenshaheen
      @greenshaheen 4 месяца назад +1

      I love your channel and effort.

  • @TechCraft5.O
    @TechCraft5.O 2 месяца назад +1

    Wow, You are too good! :)

    • @SemicolonGuy
      @SemicolonGuy  2 месяца назад

      kon? mai ya phir candidate 😂

    • @TechCraft5.O
      @TechCraft5.O Месяц назад

      @@SemicolonGuy offcourse aap.

  • @anamikabajpai637
    @anamikabajpai637 4 месяца назад +2

    Sir interview pura english me hota hai ya hr pe depend krta hai hindi english both use kr skte hai?

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад +1

      depend krta interviewer kaha ka hai. Agar usko hindi aati to hinglish ho jata

  • @rushikeshbhumkar8474
    @rushikeshbhumkar8474 4 месяца назад +2

    Keep it up bro

  • @Er_hariom7970
    @Er_hariom7970 6 месяцев назад +2

    Congratulations 👏 ayush 🎉🎉

  • @ayaniegain
    @ayaniegain 5 месяцев назад +2

    Is there a DSA round in interviews? Which language do you prefer for problem solving?

    • @SemicolonGuy
      @SemicolonGuy  5 месяцев назад

      Smjh nhi aya

    • @ayaniegain
      @ayaniegain 5 месяцев назад

      @@SemicolonGuy Is there a DSA round in interviews? Which language do you prefer for problem solving?

    • @F7682
      @F7682 4 месяца назад

      @@ayaniegain DSA round keliye language important nahi hai bro ap jo bhi language se comfortable ho usise desakte ho only tumhara problem solving skill dikha jayega naaki programming language

  • @aayushdev7104
    @aayushdev7104 2 месяца назад +1

    Sir I'm doing Bsc and preparing for web development. are there any opportunity for bsc students.

    • @SemicolonGuy
      @SemicolonGuy  2 месяца назад

      Ha bhai, Where there’s a will, there’s a way.

  • @Kamlesh20005
    @Kamlesh20005 6 месяцев назад +4

    Are bhai keyword ki to maar li 😂😂😂😂😂😂😂😂😂😂😂

  • @techworld6602
    @techworld6602 4 месяца назад +2

    First question is how nurvous are you?
    Can you do little good acting while taking fake interview

    • @SemicolonGuy
      @SemicolonGuy  3 месяца назад

      fake interview?
      I think i have done a good acting if you felt this interview a fake

    • @techworld6602
      @techworld6602 3 месяца назад +1

      @@SemicolonGuy ya but its worst. If i see such interviewer i will reject the job offer in first place

    • @SemicolonGuy
      @SemicolonGuy  3 месяца назад

      Waist kyu? What is wrong with this question?

  • @guptalove2437
    @guptalove2437 4 месяца назад +2

    Helpful👍

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад

      Glad it helped! Aur kya pasand kroge dekhna

  • @legendarygaming8180
    @legendarygaming8180 4 месяца назад +2

    lack of josh...

  • @Kamlesh20005
    @Kamlesh20005 6 месяцев назад +1

    Itna late laaaye ho video kya balu

  • @sakshamsharma1451
    @sakshamsharma1451 4 месяца назад +2

    Tech burner ne ye interview kb diya 🤡

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад +1

      Jaha bhi tech hoga vaha tech burner to hoga hi 😝

  • @ManrajStudios
    @ManrajStudios Месяц назад +1

    Tech burner bhai yaha ky kar rhe 😆

    • @SemicolonGuy
      @SemicolonGuy  29 дней назад +1

      Nya startup aane wala hai tech burner ka

  • @zia_officia4204
    @zia_officia4204 6 месяцев назад +2

    bhai mere gandu se gandu dost log interview nikal liye aur kisiko ko kuch nhi aata tha aur ye deep copy shallow copy kb se bahi puch ne lage fresher se ha puchte hai pr package bhi 70000 ka rehta hai fir yaar thoda basic rkkhe kyunki market me job mil rahi 15000 ki aur ap ye sb bata rahee aur agar ye sb bata rahe to course bhi batate kaha se pade kyunki waha to bata rhe abc aur pauch rahe a2+b2=a3-b4 kaise hoga na bhai bhai aisa courese suggest krde kyunki jo ap puche hai bhai mere exprerience dost log answer nahi krparahe the to thoda bataaye.

    • @zia_officia4204
      @zia_officia4204 6 месяцев назад +2

      ji semicolon bhai sahab course suggest kre kyun ki jo ldka bata raha wo experience log nahi bata paye

    • @SemicolonGuy
      @SemicolonGuy  6 месяцев назад

      Feel you bro! Aajao LinkedIn par baat krte hai?
      linkedin.com/in/ritikcodes

  • @nihalgamerz
    @nihalgamerz 4 месяца назад +1

    Ap c++ ka inter lete hoo sir

  • @MOHAMMADYUSUFBABA
    @MOHAMMADYUSUFBABA 6 месяцев назад +2

    mujhe bhi interview dena hi

  • @empty_peace
    @empty_peace 2 дня назад +1

    cool nehi hai bhai 😑

  • @iganic7574
    @iganic7574 6 месяцев назад +1

    Interviewer linkedin?

    • @SemicolonGuy
      @SemicolonGuy  6 месяцев назад +1

      www.linkedin.com/in/unstoppableayush?

  • @Epicnessinblood
    @Epicnessinblood 3 месяца назад +1

    I need a mentor, sir can you please be my mentor 🙏

    • @SemicolonGuy
      @SemicolonGuy  3 месяца назад

      abhi to mai 1:1 mentorship nhi krta

  • @pramodamankit
    @pramodamankit 4 месяца назад +2

    Please take my interview #todospecial

    • @SemicolonGuy
      @SemicolonGuy  4 месяца назад

      please join our whatsapp group from description. You will find mock interview form there

  • @Dasnudas-g9x
    @Dasnudas-g9x 3 месяца назад +1

    J

  • @Kamlesh20005
    @Kamlesh20005 6 месяцев назад +3

    Ritik bhaiya ne muje dhoka de Diya warna me Aaj is video interview de Raha hota 😔😔😔

    • @AdnanGamer745
      @AdnanGamer745 5 месяцев назад +1

      Who asked?

    • @Kamlesh20005
      @Kamlesh20005 5 месяцев назад

      @@AdnanGamer745 tuje kisane bola reply ke liye chomu

    • @SemicolonGuy
      @SemicolonGuy  5 месяцев назад +1

      Haha

    • @TragicGFuel
      @TragicGFuel 4 месяца назад +1

      @@Kamlesh20005 lmao you ain't getting hired with that attitude

    • @NitinJha-e6s
      @NitinJha-e6s 3 месяца назад

      ​@@TragicGFuelbruh why do you care 💀

  • @MOHAMMADYUSUFBABA
    @MOHAMMADYUSUFBABA 6 месяцев назад +1

    const users={
    name:"semiccolon",score:{
    max:100
    }
    }
    function deepCopy(users){
    const obj={}
    for(let i in users){
    if(typeof users[i] !=='object'){
    obj[i]=users[i]
    }else{
    obj[i]=deepCopy(users[i])
    }
    }
    return obj
    }
    const user1=deepCopy(users)
    user1.score.max=40
    console.log(user1)
    console.log(users)

  • @Devanshugoel
    @Devanshugoel 5 месяцев назад +3

    can you tell me how to prepare for react js internship
    what type of questions i need to focus on?????????

    • @SemicolonGuy
      @SemicolonGuy  5 месяцев назад +1

      You can prepare for machine coding round and basic hooks, class and new react features question

    • @Devanshugoel
      @Devanshugoel 5 месяцев назад

      @@SemicolonGuy you mean class based component??

    • @SemicolonGuy
      @SemicolonGuy  5 месяцев назад +1

      Difference between class and function based. Why hooks were introduced. Just the basics