🔴FRESHERS PROJECTS SERIES ON #ReactJS 🔴 SHOULD I START ?? Please Let me know here:- twitter.com/itscodingdoctor/status/1551840209871978496
@vinaypatil80092 жыл бұрын
Please sir Strat fresher resume ready project + for 2 years also
@manojmanu5636 Жыл бұрын
Definitely, Please start.
@ajaygupta26397 ай бұрын
now I understood, what level of confidence required in interview.
@harishg94292 жыл бұрын
@18:19 simple fix, call the function by adding parantheses (). setTimeout(object.logMessage(), 1000)
@itscodingdoctor2 жыл бұрын
Yes
@MysteryFactsHunter18 күн бұрын
Awesome 🎉
@garrysyt84612 жыл бұрын
Indeed it was a tough one . Loved to see how you tackled it . Hope you'll also clear it ☺️
@itscodingdoctor2 жыл бұрын
Thanks
@souravsharma23282 жыл бұрын
You are sharing this knowledge for free, seems like a fairytale... because of youtube algorithm I bumped into yr channel. Again, great content bro 👏
@itscodingdoctor2 жыл бұрын
Thanks 👍👍
@marimuthur945611 күн бұрын
Marvelous😊
@15lopa2 жыл бұрын
Everything is fine bro but debounce logic is not ok. Every time when user put something in input it will delay for 300 ms U need to call the debounce hook for every key stroke and if within 300 ms next key stroke comes it will cancel previous one and will reset the delay. Simple modification is required. By the way thanks for sharing. Best of luck buddy. Hope u will get the call.
@itscodingdoctor2 жыл бұрын
Glad to see the amount of attention you paid. It's a good finding. Let me check and revert. Keep learning!
@TheAditya642 жыл бұрын
Well 300ms is not much but additional check like you explained can come handy for sure in the forms when you have too many inputs to fill
@mother_chucker12 Жыл бұрын
Hi, sorry, but isn't that already happening? Or am I missing something? The state gets changed, which causes the debounceValue timeout to be reset on each key stroke. Its not delaying 300ms + 300ms + 300ms... its reseting it.
@deepakbehera709 Жыл бұрын
Awesome video
@itscodingdoctor11 ай бұрын
Thanks 👍
@jayeshshrivastava54242 жыл бұрын
I am a fresher and interested to get a job as a react dev, I am familiar with the basics of react from props to hooks, but I haven't learnt class components. So what to learn next? Also can you please share any fresher interview or commonly asked from fresher's?
@itscodingdoctor2 жыл бұрын
Here you go MNC Interview Experiences: kzbin.info/aero/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc
@kashmirtechtv29484 ай бұрын
Really confused at 19:00.... Sometimes you call it directly like using small brackets inside setTimeout and sometimes outside setTimeout
@srikarravoori12410 ай бұрын
Worth to watch every second
@itscodingdoctor6 ай бұрын
Glad to hear
@harishg94292 жыл бұрын
i learnt a lot, thank you for posting this.
@k303k Жыл бұрын
Thanks a lot for the video!!
@SarathChandran96 Жыл бұрын
Javascript is an ocean. I will definitely fail these kinds of interviews
@amitsahgal2000 Жыл бұрын
Dnt have confidence then don't comment and spread negativity kaha kaha se ajate haa
@endangeredcreator5050 Жыл бұрын
Don't give up brother
@itscodingdoctor Жыл бұрын
Don't worry. Take your time and prepare well. Just try to start with the basics of javascipt and then slowly move to advance concepts.
@RohitSainiHaryana2 жыл бұрын
English + Skills = 🔥🔥🔥
@itscodingdoctor2 жыл бұрын
Yup!
@DollarLachimi Жыл бұрын
you are too good bro👏
@puneetarora17142 жыл бұрын
this is some really good stuff nise
@itscodingdoctor2 жыл бұрын
Thanks 👍
@hassaansaleem6232 Жыл бұрын
Great video, help me alot
@itscodingdoctor Жыл бұрын
Thanks 🙏
@jsblockchain381 Жыл бұрын
great content bro
@itscodingdoctor Жыл бұрын
Thanks 🙏
@ShubhamPatil-rr4on2 жыл бұрын
Plz make videos like this it's awesome ♥️💻💯
@itscodingdoctor2 жыл бұрын
Thanks bro! I'll try my best.
@TheAditya642 жыл бұрын
Nice, good job
@itscodingdoctor2 жыл бұрын
Thanks 👍
@igboanugwocollins44522 жыл бұрын
Good one
@itscodingdoctor2 жыл бұрын
Thanks 👍
@igboanugwocollins44522 жыл бұрын
@@itscodingdoctor I'm actually practicing algorithms for interviews
@itscodingdoctor2 жыл бұрын
👍
@meezanshaikh71592 жыл бұрын
can you please attach the codepen link or something from next time for. the entire interview ... it'll be really helpful.
@itscodingdoctor2 жыл бұрын
Sure
@shreyognemlekar42452 жыл бұрын
Keep up the good work 👌
@itscodingdoctor2 жыл бұрын
Thanks 👍
@ronn0042 жыл бұрын
this one really awesome.
@itscodingdoctor2 жыл бұрын
Thanks!
@zathkal40042 жыл бұрын
Bro could you please explain again as to why state should not be updated/altered directly? Many thanks in advance (:
@vickychauhan53962 жыл бұрын
Bro how to learn JavaScript ?what is the right way so we can gain confidence and crack interview . Please suggest
@satishv19942 жыл бұрын
Follow @codewithharry
@itscodingdoctor2 жыл бұрын
I can suggest two good resources. 1. Learn from here:- javascript.info/ 2. Practice here:- edabit.com/challenges/javascript These two resources are my personal favoutire.
@3minutesbibletruth Жыл бұрын
Can you please build bank app for us
@rahuldotel59832 жыл бұрын
did it as if I was too in this interview and i came up with this import { useRef } from "react"; const App = () => { const timeOutRef = useRef(null); const onChange = (e) => { if (timeOutRef.current) { clearTimeout(timeOutRef.current); } timeOutRef.current = setTimeout(() => { console.log(e.target.value); }, 400); }; return ; }; export default App;
@itscodingdoctor2 жыл бұрын
Great bro! Thanks for sharing it.
@itscodingdoctor2 жыл бұрын
Doing questions considering that you are also in interview, one of the best way to learn. Keep it up 🙂
@mugilankathavarayan8168 Жыл бұрын
Super bro
@itscodingdoctor Жыл бұрын
Thanks
@lalithrockz2 жыл бұрын
Isn't the whole virtual dom updated and then compared to the real dom so that difference is applied to the real dom?
@ashishwildlifeandtravelpho7308 Жыл бұрын
Yes
@victorkeb2 жыл бұрын
very nice thank you
@itscodingdoctor2 жыл бұрын
Thanks 😊
@itscodingdoctor2 жыл бұрын
You can find more here MNC Interview Experiences: kzbin.info/aero/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc
@ramprasadboddu2551 Жыл бұрын
Can we use useRef instead useDebounce hook?
@shalukumari31512 жыл бұрын
Hii, I am currently working as web developer in react js library from last 2.5 year . And I want to change my company . Please tell me the detailed hiring process of nagarro. And where i can apply it will helps me alot. Thankyou🙂
@itscodingdoctor2 жыл бұрын
Great! 1st online round:- English MCQ questions 2nd online round:- 2-3 JavaScript coding questions 3rd:- First round of technical interview 4th:- Second technical round 5th:- HR/MANAGERIAL You can apply via Naukari or LinkedIn or Nagarro website For any other questions please comment.
@shalukumari31512 жыл бұрын
Thank you 🙂
@MrAditya90192 жыл бұрын
@@itscodingdoctor How can we prepare for coding questions, 2nd round
@itscodingdoctor2 жыл бұрын
Practice coding questions. Specially array and objects questions
@skzahirulislam2820 Жыл бұрын
Which company bro?
@shubhambhushan338 Жыл бұрын
which company interview ?
@ShailPM5 ай бұрын
react video and gives him typescript...
@atanujana81192 жыл бұрын
Can you tell me how to apply Or from where we can apply?
@itscodingdoctor2 жыл бұрын
LinkedIn or Nagarro career portal
@atanujana81192 жыл бұрын
@@itscodingdoctor okay
@gulrezeqbal30482 жыл бұрын
How much experienced u have in react?
@itscodingdoctor2 жыл бұрын
These questions applies for experience of more than 2 years
@itscodingdoctor2 жыл бұрын
Nagarro asks tough questions
@ShubhamPatil-rr4on2 жыл бұрын
But here one problem English , we are not fluent in English😒
@itscodingdoctor2 жыл бұрын
Bro, I understand.
@itscodingdoctor2 жыл бұрын
Try to listen the answers again and again. It would give you the confidence.
@ShubhamPatil-rr4on2 жыл бұрын
@@itscodingdoctor not bro I can understand lot of accent in English I can totally understand English. But problem when we explaine in interview I can't explain in English 😒
@itscodingdoctor2 жыл бұрын
You know what bro, then it's just interview pressure which makes you feel you can't explain in English.
@ShubhamPatil-rr4on2 жыл бұрын
@@itscodingdoctor I have question brother, if interviewer ask me to explain some consept, It will be really helpfull to explain on codesentbox than explain therotically. What's your opinion..?
@navaneeth61572 жыл бұрын
Is this for remote or on campus? Also is it possible for 1st year college student to get selected? Thanks in advance
@itscodingdoctor2 жыл бұрын
It's a remote job. it all depends on the Job requirements. You may get an internship, provided you are good at coding.
@dipanshusabharwal2 жыл бұрын
Baaki sab to theek hai, par ye clickbait thumbnail kyu lgai ? Be classy.
@itscodingdoctor2 жыл бұрын
I want to encourage girls also, TO CODE ✌
@dipanshusabharwal2 жыл бұрын
@@itscodingdoctor you just lost my respect.
@itscodingdoctor2 жыл бұрын
What happened bro? I didn't mean it.
@itscodingdoctor2 жыл бұрын
Bhai to get your respect back I'll update the thumbnail. I had never thought about clickbait.
@itscodingdoctor2 жыл бұрын
@@dipanshusabharwal Updated the thumbnail.
@rajeevranjan84342 жыл бұрын
2 week pehle fresher ka video Ab 4 year experience ka video Kya mazak h
@itscodingdoctor2 жыл бұрын
Bro I keep giving Interviews to test my knowledge. And to see what kind of questions are asked at different levels of experience. So that I can provide those interview videos to you guys. I'm a experienced react developer.
@rishavmehta60082 жыл бұрын
questions are good....were you selected???
@itscodingdoctor2 жыл бұрын
Waiting for the result 🤞
@rishavmehta60082 жыл бұрын
@@itscodingdoctor You'll definitely get selected. All the best bro.
@itscodingdoctor2 жыл бұрын
Thanks buddy!
@surendravaddi96302 жыл бұрын
Exp?
@itscodingdoctor2 жыл бұрын
4
@piyushchopade78782 жыл бұрын
@@itscodingdoctor How much of this is expected from a fresher?
@itscodingdoctor2 жыл бұрын
For fresher, interview won't be this hard. If you good at basics of react and JavaScript, You are good to go! Try to build 2-3 react projects and practice javascript coding questions.
@澳贼 Жыл бұрын
geee, i'm surprised u passed the interview. you misunderstood some basic concepts.