Appreciated your efforts. Keep uploading such a good react videos. Please create series on live react project by combining all concepts.
@DipeshMalvia3 жыл бұрын
Thank you, I will
@balamuruganp38653 жыл бұрын
Well explained. Thanks
@DipeshMalvia3 жыл бұрын
Glad you liked it
@shahhussain563 жыл бұрын
Very very informative ❤️
@DipeshMalvia3 жыл бұрын
Glad it was helpful!
@amritabachhar9303 жыл бұрын
Hi Dipesh, well explained but I have a query in the last section...i am facing an "TypeError: names.map is not a function"? Please advice.
@Desireanshu2 жыл бұрын
Check if you initialised const [names, setNames] = useState({ }). Reason you get this error is because you may have declared names as an object with curly brackets. Objects dont have map() function. Declare it as const [names, setNames] = useState([ ]).
@DeepakGupta-pz4fx3 жыл бұрын
Please upload complete hook tutorial like useeffect, custom hook, use reducer and usere, use memo all video upload
@DipeshMalvia3 жыл бұрын
useEffect is next after that useRef and useMemo coming.
@shraddhamuley19503 жыл бұрын
Waiting for React Redux! please make a playlist on it ASAP... thank you
@sainathreddy26323 жыл бұрын
if possible make a playlist of spring boot
@abal113 жыл бұрын
Can you do useEffect?
@DipeshMalvia3 жыл бұрын
Yes, I am going to publish video on all React hooks. useEffect will be out in Tuesday.
@somugowda57393 жыл бұрын
Hi Bro, please make complete tutorial on React Native .
@sundarp39598 ай бұрын
Bro I get a one error like that Names.map is not a function What can I do
@YesBeeMedia3 жыл бұрын
function changeName( ) { return setName("name") } can you please reply me why you using return here? even if we are not using return it will work.
@ChillVibes_473 жыл бұрын
Bro, Your video awesome. But, we face issues to seeing your video . Plz increase your font size..
@SenthilKumar-rf3qv3 жыл бұрын
Great work bro ... I have a doubt ... How give condition that the number should not reduce to negative number after pressing - button .. I mean should stop at 0 .. and if we press on - button , it should not go to negative values
@avinashmahanthi66882 жыл бұрын
just use if condition like this: if (counter !== 0) { setCounter(counter - 1); }
@biswajitjena35403 жыл бұрын
Sup sir..pls make class based components in reactjs
@DipeshMalvia3 жыл бұрын
Hi Biswajit, I have already made a video for class component and usage if state inside it. Do checkout my video on React JS Fundamentals it covers the class component.
@ankushsrivastava1078 Жыл бұрын
Please provide the github link , repo or something of the codes that you do..helps as a quick reference
@chandanamusham49213 жыл бұрын
Please do React native map integration ..
@ranjit2273 жыл бұрын
Need to make react tutorial in Hindi...plz do
@mayankmishra6903 жыл бұрын
Sir please tell me if i am learning react , should i know java and c for cracking interviews?
@DipeshMalvia3 жыл бұрын
Not required when you learn React you will apply for React developers role.
@aryaadinulfadlan89983 жыл бұрын
how to pass async function in useState argument? someone please help me 🙏