๐…๐‘๐„๐’๐‡๐„๐‘'๐’ ๐…๐ซ๐จ๐ง๐ญ ๐„๐ง๐ ๐ƒ๐ž๐ฏ๐ž๐ฅ๐จ๐ฉ๐ž๐ซ ๐ˆ๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ ๐๐จ - ๐ŸŽ๐Ÿ• | ReactJS, Javascript, HTML,CSS,Redux

preview_player
ะŸะพะบะฐะทะฐั‚ัŒ ะพะฟะธัะฐะฝะธะต
I hope these kind of videos can help you guys while preparing for your upcoming Front end developer interviews.

I have around 2.5 years of experience in Frontend development and given around 100+ interviews.
I know what it takes to crack the interview and I will be able to guide you accordingly as per the industry standards.

After your interview,feedback will be given to you personally in the way you can give better interviews in the near future.[๐…๐‘๐„๐„ ๐Ž๐… ๐‚๐Ž๐’๐“]
Feedback includes:
1.Your doubts
2.Which are the resources that can help you to grow?
3.What are the things or the skills reqiured you to give an edge above other candidates for job selection?
4.Where you can apply for jobs,etc and many more...

PLAYLIST OF MY SELECTED FRONTEND INTERVIEWS :

PLAYLIST OF FRESHER'S INTERVIEWS:

ENQUIRIES :
Freshers front end interview
Front end interview freshers
top react interview questions
html css javascript react interview questions
javscript coding interviews
javscript problem solving coding interview questions
top 100 react interview questions
how to prepare for web developer interview
how to get front end job
react interviews
Reactjs interview experience
React js interview experience
react js
React interview experience
Frontend Interview experience and answers
reactjs interview questions and answers
advanced reactjs interview questions
react js interview questions
react redux interview questions
top 100 react js interview questions
reactjs interview questions and answers for experienced
ReactJs Interview questions and answers
React/Redux Coding Interview
Frontend Interview questions and answers
Javascript array interview questions
react coding interview
front end developer mock interview
reactjs basic interview questions
javascript mock interview for experienced
javascript logical interview questions
junior react developer interview questions
how to prepare for web developer interview
react interview questions
javascript coding interview
reactjs questions and answers



#javascript
#javascriptinterviewquestions
#reactjsinterviewquestions
#javascriptinterviewquestions
#reactjs
#reactjstutorial
#frontenddeveloper
#experienced #reactjs #interview
ะ ะตะบะพะผะตะฝะดะฐั†ะธะธ ะฟะพ ั‚ะตะผะต
ะšะพะผะผะตะฝั‚ะฐั€ะธะธ
ะะฒั‚ะพั€

Thanks for the interview, Sir. I cracked a company last week

AmirKhan-uhvd
ะะฒั‚ะพั€

I will watch interviews from now on instead of watching tutorials.
Thank you for uploading it as a post.
For freshers, its not just a post its a potential unlocker video.
Really helpful for upscaling the base knowledge.
Respect++

Dev-LalitRajput
ะะฒั‚ะพั€

It's not a real interview. It's a self interview but he delivered a good example interview.

shibakarmakar
ะะฒั‚ะพั€

People who copy and paste code have fun when this interview comes

awinbmx
ะะฒั‚ะพั€

Don't take it hard solve like a puzzle just split up the problem and solve the splited problem in code and merge the problem and merge the code boom you got it... in merge string just split problem two concate alternate string so you can use loop for minimum length string after run balance extra string we will concate it to final result using substring method...

_Fancy_Bear_
ะะฒั‚ะพั€

//Marge two string
let str1 = 'Hello'
let str2 = 'World'
//output = HWeolrllod;
let bag = '';
let i =0;j=0;

if(i<str1.length){
bag+=str1[i]
i++
}
if(str2.length){
bag+=str2[j]
j++
}
}
console.log(bag)

Vivek-gtgm
ะะฒั‚ะพั€

const str1 = "abc2";
const str2 = "xyz13";

function addString(str1, str2) {
let minStr = Math.min(str1.length, str2.length);
let res = "";
for (let i = 0; i < minStr; i++) {
res += str1[i];
res += str2[i];
}
str1.length > str2.length
? (res += str1.substring(minStr, str1.length))
: (res += str2.substring(minStr, str2.length));
return res;
}

const res = addString(str1, str2);
console.log(res);

Chiby
ะะฒั‚ะพั€

20:00 Merge String alternately
let s1 = "Hello123456";
let s2 = "World";
let finalStr = "";

for (let i = 0; i < (s1.length > s2.length ? s1.length : s2.length); i++) {
if (i < s1.length) finalStr += s1.charAt(i);
if (i < s2.length) finalStr += s2.charAt(i);
}
console.log(finalStr);

journalslastpage
ะะฒั‚ะพั€

Bro.. the question of == and === came in the morning interview. Thanks ๐Ÿค—

somaprakashrath
ะะฒั‚ะพั€

Bro continue this type interview it will really helpful.

Sportgameww
ะะฒั‚ะพั€

Fantastic interview! Really helpful...

saketshinde
ะะฒั‚ะพั€

const array = [1, [3, 4], [6, [7, 8]]]
const stack = [...array]
const res =[]
while(stack.length){
const pope = stack.pop();
if(Array.isArray(pope)){
stack.push(...pope)
}else{
res.push(pope)
}
}

console.log(res.reverse())

//Flat array

rehankarol
ะะฒั‚ะพั€

Student communication is Better then interviewer

misturoy-bu
ะะฒั‚ะพั€

I guess Passing null will cause an error, because i guess react expects the dependency array to be an array or to none so Null won't be valid for it! The no dependency will cause it to run after every render and empty -once on mount

theinfinityx
ะะฒั‚ะพั€

At 37:01, it's taking null value of str1 as undefined

deepthib
ะะฒั‚ะพั€

Bhai string marge wale question bhut aasan tha like 5 min me ho gya tha and bhut simple logic bhi tha, aapne kuch jada hi hard kar diya use or gor se deekho uska ans fir bhi glt hi aaya hai extra 'o' aaya hai usme, but bo bat hai ki thoda pressure environment ki bat ho jata hai, barna aap bhi bad me krke dekhte to badi aasani se ho jata

shivamdeshwal
ะะฒั‚ะพั€

i'm watching this interview and all i know is

print("hello world")

sarvanandd
ะะฒั‚ะพั€

Itโ€™s good but this is planned interview i think but this is good way to present himself

SCRIPTSAG
ะะฒั‚ะพั€

Thanks for sharing. I love Ladakh. Good luck with your YT channel.

xyzatin
ะะฒั‚ะพั€

I really enjoyed your interview video, but I have one suggestion. Students should correctly explain their answers and run the program because we are often guessing the answers. By running the program, we can verify whether our guess is right or wrong

akashs
welcome to shbcf.ru