sir we can use useRef instead of useMemo hook right? as useRef will give the same object reference instead of creating new one and its value also persists until component lifetime
Please create one exclusive video on JWT authentication in ReactJS or NodeJS in such a way that any beginner can understand and can get a full explanation from scratch to advanced. You can explain using any project also.
Helpful. Even working with Javascript since 6 months, totally dependent on Chatgtp, actually our startup demands fast requirement to be completed. any suggestion for us, thanks
If you know JavaScript fundamentals you don't have to go to Chat GPT for small small problems. You'll have to master JavaScript fundamentals if you want to become a fast and efficient developer. Follow my JavaScript playlist. ua-cam.com/play/PLfEr2kn3s-bo4LwlbyZugHPavhcdW8YMC.html&si=OTJyH4ENOzJUbOGX I have covered everything in depth.
Best video on Debouncing, explaining all the edge cases and the logic behind every line you wrote, thanks for this tutorial. ♥️
sir we can use useRef instead of useMemo hook right? as useRef will give the same object reference instead of creating new one and its value also persists until component lifetime
Great explanation 😵💫 thank you sir✨
What is Debouncing in JavaScript? | JavaScript for ProCodrrs.
Hum below approach bhi follow kr skte h kya by using useEffect? or is approach mai koi issue h?
const [value, setValue] = useState("");
const [debouncedValue, setDebouncedValue] = useState("");
const handleChange = (e) => {
setDebouncedValue(e.target.value);
}
useEffect(() => {
let timerId = setTimeout(() => {
setValue(debouncedValue)
}, 1000); return () => {
clearTimeout(timerId);
}
}, [debouncedValue]);
return (
Value: {value}
debounce: {debouncedValue}
);
Please create one exclusive video on JWT authentication in ReactJS or NodeJS in such a way that any beginner can understand and can get a full explanation from scratch to advanced.
You can explain using any project also.
Sure
Bahat achhese samajh gai mnai. Thank you sir
Awesome, keep learning and sharing 😊
sir kya mujhe bi internship ka absar mileag ?
@@procodrr
Sir y use callback hook se fix nhi hoga use callback bhi toh function ko freeze kr deta hai
Sir video Bht help ful h
Awesome, keep learning and sharing 😊
Bhaiya, please throttling pr bhi 1 video banao
Next video usi par aayegi.
Thanks a lot @Anurag
Helpful. Even working with Javascript since 6 months, totally dependent on Chatgtp, actually our startup demands fast requirement to be completed. any suggestion for us, thanks
If you know JavaScript fundamentals you don't have to go to Chat GPT for small small problems.
You'll have to master JavaScript fundamentals if you want to become a fast and efficient developer.
Follow my JavaScript playlist.
ua-cam.com/play/PLfEr2kn3s-bo4LwlbyZugHPavhcdW8YMC.html&si=OTJyH4ENOzJUbOGX
I have covered everything in depth.
first comment
❤️