Sir , you are doing very very very great Job . hats Off sir. Some peoples are selling their knowledge and experience now these days and you are sharing and distributing free. I more appreciate still less for you. 🙏
@interviewhappy Жыл бұрын
Thanks a lot @user
@sudheerdarla9812 Жыл бұрын
Thanks. Even more optimization for checking prime number is a for loop from 2 to SquareRoot(Givennumber).
@pushpendrasharma1744Ай бұрын
Thanks sir i got a job last month
@amangurram11323 ай бұрын
Reverse of a string + Palindrome or not Find the longest word in the sentence Function to remove duplicates from an array Two strings are anagrams (words with same alphabets in different or similar order) Number of vowels in a string Find the largest number in an array Check if given number is a prime number Factorial of a given number Remove whitespaces from a string Thank you very much happy sir and All the best guys!
@sumairaramzan1365 Жыл бұрын
sir you are great .mene interview se pehle apki 3hours ki vedio dekhi itni lengthy vedio mene kbi ni dekhi lekin usko dekhne k bad kisi or vedio ko dekhne ki zrort ni pri thank you so much
@interviewhappy Жыл бұрын
Your welcome @sumairaramzan1365
@kiva1806 Жыл бұрын
Straight to the point and very well explained. you are a gem 💥
@interviewhappy11 ай бұрын
Thanks @kiva
@Stellarwit2 ай бұрын
for duplicate values this is a better approach const mainFn = (array)=>{ const result = [] array.forEach((eachItem)=>{ if(!result.includes(eachItem)){ result.push(eachItem) } }) return result } console.log(mainFn([1,2,3,4,5,1,2,3,4,5,6]))
@siddharthtrivedi8692 Жыл бұрын
please make top 100 js coding questions.
@vishal_sharma_rha3 ай бұрын
Already there
@srinivasnahak34732 ай бұрын
@@vishal_sharma_rha Where?
@yogsharma78072 ай бұрын
Use this to handle edge case const numberFactorial = (num) => { let res = 1; for (let i = 1; i
@srinivasnahak34732 ай бұрын
I wish I had watched your tutorial before my 2 interviews, I couldn't answer them and hence lost the jobs. But hopefully, I'll be using this knowledge for my future interviews.
@ramansharma552 ай бұрын
Hi! Could you please help me how did you approach the company.
@sushmithashenoy75816 ай бұрын
Thankyou for your effort sir🙏 Q10 : can be done like this i suppose whitespaceremoved= str.split(" ") .join("");
@RPS-wf3hm11 ай бұрын
Sir, You have given me lot confidence to face the interview. Salut for your work!
@whatisimprov Жыл бұрын
for largest number would this work const findLargestNumber = (arr) => { const largest = arr.sort().reverse(); return largest[0]; };
@interviewhappy Жыл бұрын
woww.... that's what I want. Try new ways of doing things. Check this in some online compiler. All the best for your career.
@tusharutane8031 Жыл бұрын
amazing content hoping for the same content as we are applying for jobs
@interviewhappy Жыл бұрын
Thanks Tushar and all the best for your career.
@jaiswalgaurav957Ай бұрын
Pure Gold 👌👌👌👌
@AnshBabariya-n1w8 ай бұрын
I crack my js interview from your support ❤❤
@mathswala69518 ай бұрын
Give me your insta id bhai
@yashbadgujar-qq9iz8 ай бұрын
heyy what kind of js coding questions u were asked please reply it would be very helpful
@sree29703 ай бұрын
Sir please start training on AI tools too ..the way you teach was just beyond awsome
@dineshkumarravichandran49815 ай бұрын
function larNum(){ const num = [1,2,3,4,5]; var laNum = 0; num.reduce((x,y)=>laNum = x>y?x:y) console.log(laNum); } larNum();
@LifeinBangalore502 Жыл бұрын
Thank you so much sir for this video and nice explanation 🙂
@interviewhappy Жыл бұрын
Most welcome @sabita
@_Sujit-khot_ Жыл бұрын
good luck sir 👍
@narendravaniya9058 Жыл бұрын
Very nice coding explained very well thank you....
@interviewhappy Жыл бұрын
Thanks Naren and all the best for your career.
@jitendrakumarjat855 Жыл бұрын
sir please make videos on react js series for intermediete level your explanation top notch
@interviewhappy Жыл бұрын
Sure, after JS, I will cover React.
@jayeshmahajan4213 Жыл бұрын
thank you sir i completed all questions and prepared so now make more videos on reactjs coding interview it is very help more me for the cracked interview.
Thank you so much sir. Give us more programming questions in javascript which will be very useful for our interview sir.
@interviewhappy Жыл бұрын
I will try my best @saranyaa
@ansarisuhail51278 ай бұрын
Thank u so much sir . But sir try to make some complex coding questions for interview
@anuradhatiwari1787 Жыл бұрын
your teaching way is osam sir please pray for me whean i got select i will defently inform you sir
@interviewhappy Жыл бұрын
All the best for your interviews.
@vivekgupta743511 ай бұрын
have u got a job???
@RajKumar-yc1qx9 ай бұрын
Thanks for creating such a wonderful video, it was very sweet of you !
@interviewhappy8 ай бұрын
You are so welcome!
@bramhamreddy5417 Жыл бұрын
Thanks a lot., for supporting
@interviewhappy Жыл бұрын
Always welcome @bramham
@arjunkishore4432 ай бұрын
Best one🎉
@ArnabKhanrah5 ай бұрын
In the 'IsPrime' function we need to add If(number < 2){ return false; } Otherwise isPrime(1) will return true.
@regilearn21384 ай бұрын
no need thats why the for loop started from 2
@SURESHREDDY-cm7vt Жыл бұрын
Nice explanation. I have one doubt? If you don't mind , can explain me? What's the difference between javascript and java?
@RamanNani1998 Жыл бұрын
Javascript is scripting langauge but java is pure backend language
@dineshkumarravichandran49815 ай бұрын
function primeNum(){ const num = [1,2,3,4,5]; var prime = num.filter((x)=>x%2!=0) console.log(prime); } primeNum();
@2784raj Жыл бұрын
another great content thaks a lottt for this
@interviewhappy Жыл бұрын
Thanks Raj. All the best.
@ShubhamKumar-dc9tu Жыл бұрын
Great video sir thank you so much plzz add more video like this question solve
@interviewhappy Жыл бұрын
Sure I will try to do so @shubham
@ShubhamKumar-dc9tu Жыл бұрын
@@interviewhappy Thank you sir 🙏
@nirmalaavvaru54326 ай бұрын
Hi Sir, Please upload the videos on Vue js Interview Questions and Answers.
@hello_Subham Жыл бұрын
Sir, we are looking more coding Questions like this in javascript please do it .💥
@interviewhappy Жыл бұрын
Will upload soon @code_techbysubham
@sugan49073 ай бұрын
sir after preparing for node js from your course . Can I directly go for interview ? or I have to prepare data structure and algorithm separately
@riyamehere7179 ай бұрын
Thank you
@interviewhappy8 ай бұрын
You're welcome
@sadanandamcharynani763111 ай бұрын
thank you so much sir
@kanchanmatai41707 ай бұрын
very nicely explained
@interviewhappy7 ай бұрын
Thank you so much 🙂
@dineshkumarravichandran49815 ай бұрын
function fact(){ const num = 5; var factorial = 1; for(i=1;i
@Melakusisay Жыл бұрын
Thank you again and keep up more questions.
@interviewhappy Жыл бұрын
Always! welcome @melakusisay
@3x10.8_ms Жыл бұрын
mazza aa gya
@harikrishnanpandyan5684 Жыл бұрын
We need more js video same as it is 🔥🔥🔥🔥
@saranyaa5642 Жыл бұрын
Please post top 10 react programmatic questions asking in frontend
@priyankasaini720411 ай бұрын
21:00 Using recursion // Write a function to calculate factorial of a number. // one way function factorail(num){ if(num===1) return 1; return num* factorail(num-1); } // console.log(factorail(5));
@omkarmore44534 ай бұрын
Sir can you pls add more complex dsa questions
@codewithdeepak45 Жыл бұрын
Thankyou!
@interviewhappy Жыл бұрын
You're welcome! @deepak
@N_n55668 ай бұрын
Can you suggest me more interview coding questions to clear code round.Iam practising but iam not able to clear coding round.I have practiced your questins also but not cleared the round.Please suggest me interview tricky coding questionss to clear that round.
@RaviRanjan-yi5rq Жыл бұрын
if possible please add Azure and DevOps Interview Question
@123mutahir Жыл бұрын
Thank you Sir,
@interviewhappy Жыл бұрын
Most welcome @123mutahir
@kumaxFPS Жыл бұрын
Q2 - can be done with REDUCE fx too ! const words = str.split(" ") const ans = words.reduce(function(acc, curr){ if(curr.length > acc.length){ acc = curr; } return acc; },"") return console.log(ans)
@imoniiii6 ай бұрын
please make with like this for react .
@AradhanaTurkar-pr9sv Жыл бұрын
Sir I have combine mock on html,css,js can u make video on this please sir
@interviewhappy Жыл бұрын
Soon I will share HTML questions.
@AradhanaTurkar-pr9sv Жыл бұрын
@@interviewhappy thank u so much sir🙏
@rekhagavhane-e4t Жыл бұрын
Very nice video!!
@interviewhappy Жыл бұрын
Thank you very much! @user
@vinamrasangal84365 ай бұрын
thank you so much sir
@interviewhappy3 ай бұрын
Most welcome
@dizzgamers18783 ай бұрын
Most of the MNC companies are requested not to use inbuild function ...
@NikhilSingh-pb2jg8 ай бұрын
First question.. Logic for doing in short way is wrong as after splitting using " " , we need to loop and then reverse.
@saikumar7247 Жыл бұрын
sir plzz create a video on react js coding interview also
@yadunandan3684 Жыл бұрын
Will they ask these questions for 2+ years experience employee also?
@interviewhappy Жыл бұрын
Yes, they can.
@subratabarick2337 Жыл бұрын
Sir, i have done my bsc in 2019, after that i was doing the job but it was from non it.. so am i elegleble for becoming a devloper as a fresher...
@_d_e_e_p_u_l_u_Ай бұрын
is all the questions come for interviews is same as the above questions can anyone tell me please
@pradeeph47649 ай бұрын
Sir , execute in vs also
@rajkirankelangi57515 ай бұрын
please make top 100 js coding questions. guys hit like buttom 🔘✅🔳
@priyankasaini720411 ай бұрын
17:00 Antother way // // write a function to find the maximum number in an array let arr= [2,4,56,7,2,100,5444,1,0]; function maxElement(arr){ return Math.max(...arr); } console.log(maxElement(arr));
@naveentech3837 Жыл бұрын
Good
@interviewhappy Жыл бұрын
Thanks @ naveen
@OCEMTechZone Жыл бұрын
🎉
@interviewhappy Жыл бұрын
Thankns
@ILiusion_world Жыл бұрын
sir plz put the last question answer
@vardhinenikishore5667 Жыл бұрын
Sir, Please do promises, async and await coding concepts and React interview questions, Mor helpful preparing the interview questions
@jyotighali80029 ай бұрын
how can I run and test it
@nayiriya192111 ай бұрын
Sir please make a video in hindi
@interviewhappy10 ай бұрын
Sure Soon
@nayiriya192110 ай бұрын
@@interviewhappy sir aapke KZbin series se html,css,bootstrap, JavaScript and react ke questions solve kare to itna fresher/intern Front-End developer interview ke liye enough he?
@sandeeprathore7994 Жыл бұрын
Sorry but i cant get the Duplicate element question
@manojhk7469 Жыл бұрын
join is not working sir
@giantbush425810 ай бұрын
These are fun to practice. That said these are not enough for first round. So i kindly disagree.
@divyanshusingh42933 ай бұрын
Sir plz improve ur english its really hard to get through😅
@interviewhappy3 ай бұрын
Photo mai mundi udhr ghuma ke sunega to kaise smjh aaegi bhai
@kaushalpatel2284Ай бұрын
@@interviewhappykeep it up sir….. You are helping so many peoples….. I am from Canada 🇨🇦 and watching your videos….. I ordered your pdf materials….and I got it already via email….. I feel so so lucky to have such a wonderful materials and teacher like you❤❤❤