You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,3 @@
1
-
2
-
3
1
# FULL STACK COURSE 2023
4
2
5
3
1.[ REACT MasterClass Course Material - HERE](#react-js-masterclass)
@@ -2175,7 +2173,7 @@ It is easy to make travel booking for direct journey from one city to another. B
2175
2173
- Interface will provide the connecting journey options on same date.
2176
2174
- Care must be taken in timings of arrival and departure - so that one can continue the journey.
2177
2175
2178
-
2176
+
[Back To Top](#full-stack-course-2023)
2179
2177
2180
2178
# Redux JS MasterClass
2181
2179
@@ -2238,15 +2236,27 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
2238
2236
- **Assignment 2** : Check out IMMER library and run some example and see how you can make mutating updates like `state.amount++` inside reducer logic. And still it work perfectly in redux.
2239
2237
[Immer Link](https://immerjs.github.io/immer/)
2240
2238
2239
+
### Related Videos
2240
+
1. De-structuring Assignment : [Long Video](https://youtu.be/sNhqFofQhFs) | [Object De-structure Short Video](https://youtube.com/shorts/H3MKXE69_c8) | [Array De-structure Short Video](https://youtube.com/shorts/ONGyMq49kZY)
- **Assignment 1** : Add more cases in Account Reducer called `decrementByAmount` . Also check that amount should not be decremented in case `amount` to be decremented is less than account Balance. For e.g. if total amount in account is 10, you can't decrement by 11. Also show an error in that situation to user.
2246
2252
2247
2253
- **Assignment 2** : Check out IMMER library and run some example and see how you can make mutating updates like `state.amount++` inside reducer logic. And still it work perfectly in redux.
2248
2254
[Immer Link](https://immerjs.github.io/immer/)
2249
2255
2256
+
### Related Videos
2257
+
1. [React-Redux in Class Components](https://youtu.be/FIjtWnypwMo)
2258
+
2259
+
2250
2260
## Chapter 3 - Redux Toolkit with React
2251
2261
2252
2262
- **Assignment 1** : Add more cases in Account Reducer called `decrementByAmount` . Also check that amount should not be decremented in case `amount` to be decremented is less than account Balance. For e.g. if total amount in account is 10, you can't decrement by 11. Also show an error in that situation to user.
@@ -2262,11 +2272,15 @@ Hi, This is course page of **CoderDost Youtube Channel** Redux JS 2023 Course [V
2262
2272
2263
2273
2264
2274
2265
-
## Chapter 5 - Redux Toolkit with Async Thunk - Product and Card Project
2275
+
## Chapter 5 - Redux Toolkit with Async Thunk - Product and Cart Project
2266
2276
2267
2277
- **Assignment 1** : Add a `<Select>` on Product Card also which shows quantity selector, So user can add item with a particular quantity also initially.
2268
2278
- **Assignment 2** : Change the `<Select>` on Cart Items to `+` and `-` buttons which should increment or decrement quantity of item in the cart. Also check if Cart total is coming correct.
0 commit comments