Reading, writing, and arithmeticand code? Learn to code has been a directive given to students and young professionals throughout the country (and the world) for the last several years. It makes senseso many careers today involve at least some basic knowledge of a programming language. On top of that, some programming-dependent fields, like big data, are experiencing a major … [Read more...] about How Kids are Learning Code in the Classroom
Code
Immutability in JavaScript using Redux
In an ever growing ecosystem of rich and complicated JavaScript applications, theres more state to be managed than ever before: the current user, the list of posts loaded, etc. Any set of data that needs a history of events can be considered stateful. Managing state can be hard and error prone, but working with immutable data (rather than mutable) and certain supporting … [Read more...] about Immutability in JavaScript using Redux