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. 🙏
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
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.
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));
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.
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]))
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!
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.
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));
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)
@@interviewhappy sir aapke RUclips series se html,css,bootstrap, JavaScript and react ke questions solve kare to itna fresher/intern Front-End developer interview ke liye enough he?
@@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❤❤❤
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. 🙏
Thanks a lot @user
Thanks. Even more optimization for checking prime number is a for loop from 2 to SquareRoot(Givennumber).
Straight to the point and very well explained. you are a gem 💥
Thanks @kiva
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
Your welcome @sumairaramzan1365
please make top 100 js coding questions.
Already there
@@vishal_sharma_rha Where?
Ya man people ask shit
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.
Hi!
Could you please help me how did you approach the company.
Thankyou for your effort sir🙏
Q10 : can be done like this i suppose
whitespaceremoved= str.split(" ") .join("");
Pure Gold 👌👌👌👌
Thanks sir i got a job last month
Thank you so much sir for this video and nice explanation 🙂
Most welcome @sabita
Sir, You have given me lot confidence to face the interview. Salut for your work!
Sir please start training on AI tools too ..the way you teach was just beyond awsome
amazing content hoping for the same content as we are applying for jobs
Thanks Tushar and all the best for your career.
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));
good luck sir 👍
Best one🎉
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.
All the best @ jayesh
sir please make videos on react js series for intermediete level your explanation top notch
Sure, after JS, I will cover React.
Thank you so much sir. Give us more programming questions in javascript which will be very useful for our interview sir.
I will try my best @saranyaa
Very nice coding explained very well thank you....
Thanks Naren and all the best for your career.
I crack my js interview from your support ❤❤
Give me your insta id bhai
heyy what kind of js coding questions u were asked please reply it would be very helpful
Thank u so much sir .
But sir try to make some complex coding questions for interview
Use this to handle edge case
const numberFactorial = (num) => {
let res = 1;
for (let i = 1; i
Great video sir thank you so much plzz add more video like this question solve
Sure I will try to do so @shubham
@@interviewhappy Thank you sir 🙏
Thank you again and keep up more questions.
Always! welcome @melakusisay
Thanks for creating such a wonderful video, it was very sweet of you !
You are so welcome!
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
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]))
Use Set Object this is best approach..
is all the questions come for interviews is same as the above questions can anyone tell me please
very nicely explained
Thank you so much 🙂
another great content thaks a lottt for this
Thanks Raj. All the best.
Very nice video!!
Thank you very much! @user
Sir, we are looking more coding Questions like this in javascript please do it .💥
Will upload soon @code_techbysubham
We need more js video same as it is 🔥🔥🔥🔥
Sir can you pls add more complex dsa questions
Thanks a lot., for supporting
Always welcome @bramham
Thank you …
Welcome!
thank you so much sir
Thankyou!
You're welcome! @deepak
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!
Hi Sir, Please upload the videos on Vue js Interview Questions and Answers.
sir plzz create a video on react js coding interview also
Nice explanation. I have one doubt? If you don't mind , can explain me? What's the difference between javascript and java?
Javascript is scripting langauge but java is pure backend language
Thank you
You're welcome
mazza aa gya
Sir , execute in vs also
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.
thank you so much sir
Most welcome
Thank you Sir,
Most welcome @123mutahir
Please post top 10 react programmatic questions asking in frontend
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();
please make with like this for react .
your teaching way is osam sir please pray for me whean i got select i will defently inform you sir
All the best for your interviews.
have u got a job???
Sir I have combine mock on html,css,js can u make video on this please sir
Soon I will share HTML questions.
@@interviewhappy thank u so much sir🙏
for largest number would this work
const findLargestNumber = (arr) => {
const largest = arr.sort().reverse();
return largest[0];
};
woww.... that's what I want. Try new ways of doing things. Check this in some online compiler. All the best for your career.
how can I run and test it
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...
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));
if possible please add Azure and DevOps Interview Question
Will they ask these questions for 2+ years experience employee also?
Yes, they can.
Good
Thanks @ naveen
join is not working sir
In the 'IsPrime' function we need to add
If(number < 2){
return false;
}
Otherwise isPrime(1) will return true.
no need thats why the for loop started from 2
Most of the MNC companies are requested not to use inbuild function ...
sir plz put the last question answer
First question.. Logic for doing in short way is wrong as after splitting using " " , we need to loop and then reverse.
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)
Sorry but i cant get the Duplicate element question
please make top 100 js coding questions. guys hit like buttom 🔘✅🔳
Sir, Please do promises, async and await coding concepts and React interview questions, Mor helpful preparing the interview questions
function primeNum(){
const num = [1,2,3,4,5];
var prime = num.filter((x)=>x%2!=0)
console.log(prime);
}
primeNum();
function fact(){
const num = 5;
var factorial = 1;
for(i=1;i
🎉
Thankns
Sir please make a video in hindi
Sure Soon
@@interviewhappy sir aapke RUclips series se html,css,bootstrap, JavaScript and react ke questions solve kare to itna fresher/intern Front-End developer interview ke liye enough he?
These are fun to practice. That said these are not enough for first round. So i kindly disagree.
Sir plz improve ur english its really hard to get through😅
Photo mai mundi udhr ghuma ke sunega to kaise smjh aaegi bhai
@@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❤❤❤
Epic reply 😂@@interviewhappy
const str = 'Hello world'
const reversedStr = str.split(' ').reduce( (acc, char) => char + acc + ' ')
console.log(reversedStr)
//*check palindrome
let p =(s)=>{ return (s==[...s].reverse().join``)
}
console.log(p("chethan")); //true
//*reverse string
const str ="hello"
console.log([...str].reverse().join``)
//*remove duplicate
const num=[1,2,3,4,4];
console.log([...new Set(num)]);
Remainder* , not reminder
Sorry I have to. It’s like a disease 🦠
Nice
Thanks @abhay