Message from JavaScript discussions
December 2016
— So easy to use... to add an action you can do
store.addAction(function (state) {
state.helloworld = "Hello World!";
return state;
});
Or to not update state, simple don't return any data:
store.addAction(function (state) {
console.log(state.helloworld);
});
— And so, it is possible to not have to use the store's Getter if you don't need to break out data.
— Left out one bit... looks like the state updates regardless if an action did that. Fixed by adding a stateChanged
boolean
— Good afternoon.
Who can tell me a good javascript playlist on YouTube?
— Beginners tutorial or advanced
— Intermediary to work with react and redux
— I suggest to watch these two playlists, especially the first playlist
— Https://www.youtube.com/playlist?list=PLoYCgNOIyGABI011EYc-avPOsk1YsMUe_
— Https://www.youtube.com/playlist?list=PLoYCgNOIyGABs-wDaaxChu82q_xQgUb4f
— After finishing them you cannot proceed to any advanced js stuff or js frameworks or libraries like react redux etc
— faizanakram Thank you so much.