Redux Toolkit malayalam | Part 3/3 | Redux Thunk, useMemo | Pro Tips | Reactjs javascript malayalam

  Рет қаралды 11,025

Debug Media

Debug Media

Күн бұрын

Пікірлер: 73
@debugmedia
@debugmedia 2 жыл бұрын
Make sure to like and subscribe ❤
@albin6126
@albin6126 10 ай бұрын
your channel's tutorials are better than brotoypes tutorials well explained . good audio no unnecessary things
@Aravind_Unnikrishnan
@Aravind_Unnikrishnan Ай бұрын
hi sir , yours videos ellam really usefull anu , ippo iam almost oru mernstack developer anu
@debugmedia
@debugmedia Ай бұрын
Amazing ❤❤
@Chinese_player_
@Chinese_player_ 2 күн бұрын
redux engane set akki bro
@ViVi-jw8oe
@ViVi-jw8oe 2 жыл бұрын
സ്‌നേഹം മാത്രം ❤❤❤💯
@rexraymond5039
@rexraymond5039 Жыл бұрын
thank you for the great explanation!!! Also the thing is your giving additional tips to make a project better.. Hats off to you sir
@debugmedia
@debugmedia Жыл бұрын
Thank you for the kind works ❤ Stay tuned for the upcoming MERN Stack course :D
@01_r25
@01_r25 Жыл бұрын
Proud to call you my teacher❤, ithrem complicated aaya oru topic ithra nannayi explain cheithu❤
@debugmedia
@debugmedia Жыл бұрын
@santhoshkumar7816
@santhoshkumar7816 2 жыл бұрын
സ്നേഹം മത്രം മുത്തേ 👍
@codetheworld6721
@codetheworld6721 2 жыл бұрын
thanks bro , thankyou for the simple and clear explanation for react-redux 👍
@debugmedia
@debugmedia 2 жыл бұрын
@sharoonps4285
@sharoonps4285 Жыл бұрын
Orupaad sneham 🎉❤.. thanks a lott brother 🎉
@abilashn227
@abilashn227 Жыл бұрын
here is my love for the awesome content you providing ❤
@hashirbalery4949
@hashirbalery4949 5 ай бұрын
thanks for this video really appreciate your efforts
@shijibsreji6861
@shijibsreji6861 Жыл бұрын
Thank you..Very nice presentation and clear explanation..
@hashirbalery4949
@hashirbalery4949 5 ай бұрын
can you do a video about redux persist . and how handle backend token in frontend
@drishti5341
@drishti5341 11 ай бұрын
thanku so much bro for your commitments and dedication hats off
@debugmedia
@debugmedia 11 ай бұрын
❤❤
@mohameddanis
@mohameddanis Жыл бұрын
thunk randu method paranjallo, athilu big projectisnokke etha nallathu, 1st or 2nd
@Shiyas9961
@Shiyas9961 11 ай бұрын
Bro ee RTK query ne kurich video idaamooo
@murshid956
@murshid956 8 ай бұрын
Helped a lot. Thank you somuch 💜.
@prichithcp1517
@prichithcp1517 6 ай бұрын
thanks bro. Useful
@AnandrRP-c5o
@AnandrRP-c5o 7 ай бұрын
Thanks for the video :)
@SanilPS-qr4yb
@SanilPS-qr4yb 5 ай бұрын
❤❤#Debugmedia
@daniishhhh
@daniishhhh Жыл бұрын
tailwindcss course ceyamo sir pls...
@muhammedhashirkk5915
@muhammedhashirkk5915 Жыл бұрын
36:58 module.css useythalum ok alle?
@debugmedia
@debugmedia Жыл бұрын
yes no problem :)
@muhammedhashirkk5915
@muhammedhashirkk5915 Жыл бұрын
@@debugmedia aa karyam ee videol thanne korch kaynjal jzt pareennund le..okok😁♥️
@ThisIsBuyer
@ThisIsBuyer 2 жыл бұрын
redux projects kooduthal cheyyumo??
@debugmedia
@debugmedia 2 жыл бұрын
Cheyyano? 😊
@ThisIsBuyer
@ThisIsBuyer 2 жыл бұрын
@@debugmedia YES
@sreekanthps5344
@sreekanthps5344 2 жыл бұрын
thanks, bro very helpful
@arunkm7773
@arunkm7773 Жыл бұрын
Thank you brother❤
@latestvideos5757
@latestvideos5757 2 ай бұрын
i created a ecommerce website. but I am facing one issue. If i look at the redux toolkit state in the Admin panel, it is update. But, if i check the redux state on the console without refreshing the client side page, it is not updated 🥴.
@latestvideos5757
@latestvideos5757 2 ай бұрын
ഞാൻ ഒരു e-commerce website ചെയ്തിന്. അതിൽ admin panel യില് data update അകിയൽ, client side page യില് data update ആകുനില. refresh ചെയ്താൽ update ആകും. Redux toolkit state management use ചെയ്തിൻ. admin panel യില് product നെ C,U,R,D ചെയ്യുമ്പോൾ client side page yil update അകത്തെ ഇരിക്കാനുള്ള കാരണം use effect anno ⁉️. Admin panel യില് redux state നെ Console yil check അക്കിയൽ update ആണ്. പക്ഷെ , Refresh ചെയ്യാതെ client side page യില് redux state നെ console യില് check ചെയ്താൽ update അല്ല 🥴.
@krishnandesigner1
@krishnandesigner1 9 ай бұрын
You will get income soon ......... 😀 very useful video
@susmithsurendran703
@susmithsurendran703 10 ай бұрын
Love you lot ❤
@mohamedrifai5713
@mohamedrifai5713 Жыл бұрын
33:30 const cartSlice = createSlice({ name:"cart", initialState, reducers:{ addToCart: (state,action)=> { state.cartList.push({ ...action.payload, count:1, }) }, increment: (state,action)=> { const productID = action.payload; state.cartList.forEach(item => { if( item?.id === productID ){ item.count++ } }) }, decrement: (state,action)=> { const productID = action.payload; state.cartList.forEach((item,index) => { if(item?.id === productID){ item.count-- ; if(!item.count > 0){ state.cartList.splice(index, 1); } } }) }, } settano???
@debugmedia
@debugmedia Жыл бұрын
Join Telegram to ask doubts : Debug Media Discourse t.me/debugmedia
@fasilrahman1692
@fasilrahman1692 Жыл бұрын
Sir njan oru product itu pole push ceytu data okke console ceytittu vaeunnundu but map ceyyumbool data pokunnu
@debugmedia
@debugmedia Жыл бұрын
Join Telegram to ask doubts: Debug Media Discourse t.me/debugmedia Instagram: debugmedia
@vergil_389
@vergil_389 Жыл бұрын
sneham maathram :D patreon , buy me a coffee okke use cheyy.
@debugmedia
@debugmedia Жыл бұрын
Nokkam :D Ippo MERN stack course'nte planning'il aan :D
@minhajt3395
@minhajt3395 2 жыл бұрын
broh plz explaine RTK Query also
@salihak1050
@salihak1050 2 жыл бұрын
Python complete tutorial cheyyamo
@muhammedshafeequeot4608
@muhammedshafeequeot4608 2 жыл бұрын
Thanks bro😍😍
@AnandrRP-c5o
@AnandrRP-c5o 7 ай бұрын
without thunk is easy,
@letbegan8179
@letbegan8179 2 жыл бұрын
Thank You ❤️
@debugmedia
@debugmedia 2 жыл бұрын
@fasilrahman1692
@fasilrahman1692 Жыл бұрын
Cartlist array ayi kittunnundu but athu cartcount vayi find ceyyumbol undefined ayi varunu
@debugmedia
@debugmedia Жыл бұрын
Join Telegram to ask doubts : Debug Media Discourse t.me/debugmedia
@nabeelnizar9331
@nabeelnizar9331 Жыл бұрын
Bro..... how can I contact you?..... I've been spending a lot of days learning React, but I still can't understand some topics, and iam struggling to create a user management system....
@debugmedia
@debugmedia Жыл бұрын
Debugmediayt on telegram Debug Media on instagram
@vishnu5406
@vishnu5406 2 жыл бұрын
Django rest frame work nte video idamo 🙂
@akshaisajeev5720
@akshaisajeev5720 2 жыл бұрын
Hi... Good video.. Git hub link idamo please
@jacksonpatrick3454
@jacksonpatrick3454 2 жыл бұрын
fragment wrap cheythitum error msg ponilla
@debugmedia
@debugmedia 2 жыл бұрын
Error endhaan varunnath?
@thebeginner613
@thebeginner613 9 ай бұрын
🥰
@fasilrahman1692
@fasilrahman1692 Жыл бұрын
19.16. Cartcount undefined ayi kanikkunnu
@debugmedia
@debugmedia Жыл бұрын
Join Telegram to ask doubts : Debug Media Discourse t.me/debugmedia
@adwai6713
@adwai6713 Жыл бұрын
increment:(state,action)=>{ const productid=action.payload; const updatedCartlist = [...state.cartlist]; updatedCartlist.forEach((item) => { if (item?.id === productid) { item.count += 1; } }); }, try this
@solotravel145
@solotravel145 2 жыл бұрын
go language chayamooo
@saranplk3464
@saranplk3464 2 жыл бұрын
❤❤❤
@rajeendranmampatta2415
@rajeendranmampatta2415 2 жыл бұрын
😍
@amal-uz1cj
@amal-uz1cj 6 ай бұрын
blur ind bro
@albin6126
@albin6126 10 ай бұрын
Programming is just insanity . From a simple html css js . they create various frameworks and to solve problems of that framework they create more additional frameworks or packages and also create multiple types of frameworks. and the final thing is that there are thousands of ways to do a single thing and applications are getting slower and to solve that we need to do something else . finally coding is a complete mess.
@debugmedia
@debugmedia 10 ай бұрын
A beautiful and expensive mess. The more frameworks they bring in , the greater the >>>> Salary 😉
@mskcmd8355
@mskcmd8355 7 ай бұрын
❤❤❤❤❤❤
@vishnukv7988
@vishnukv7988 Жыл бұрын
Thank you bro 💙💙
@arif-id8hq
@arif-id8hq Жыл бұрын
СКОЛЬКО ПАЛЬЦЕВ ТУТ?
00:16
Masomka
Рет қаралды 1,8 МЛН
amazing#devil #lilith #funny #shorts
00:15
Devil Lilith
Рет қаралды 18 МЛН
ROSÉ & Bruno Mars - APT. (Official Music Video)
02:54
ROSÉ
Рет қаралды 330 МЛН
Redux Toolkit Tutorial - 24 - Async Thunks
13:39
Codevolution
Рет қаралды 75 М.
What is Next JS ? | Difference between Next JS & React JS | Malayalam
22:11
How he became a developer with ₹3,00,00,000 salary!
47:29
Brototype Malayalam
Рет қаралды 335 М.
СКОЛЬКО ПАЛЬЦЕВ ТУТ?
00:16
Masomka
Рет қаралды 1,8 МЛН