JJasoninjason00111.hashnode.dev·Feb 25, 2021 · 2 min readArray.fromThe JavaScript function Array.from is not often discussed, but it is great! Sometimes we run into something which is array-like, but is not actually an array. It would be nice to use the standard array methods like forEach or filter, but they're not ...00
JJasoninjason00111.hashnode.dev·Feb 12, 2021 · 8 min readAggregating In ParallelIntroduction Getting statistics from a large amount of data can be a challenging problem. For example, how can we find the average customer revenue in each geographical region if we have way more data than can fit on a single machine? At SnapStrat, w...00
JJasoninjason00111.hashnode.dev·Feb 8, 2021 · 8 min readAudio PlayerI made an online audio player inspired by the recently shuttered Google Play Music. Live app: https://audio-player-rho.vercel.app/ Source code: https://github.com/jason00111/AudioPlayer Features Overview It can play audio from: a file on a users dev...00
JJasoninjason00111.hashnode.dev·Jan 15, 2021 · 3 min readIntroduction to JavaScript Array and Object DestructuringHello, this is my first article on Hashnode! I saw a request for an article about JavaScript array and object destructuring so here is my take on it. First of all, I find that the MDN documentation is a good place to start. A search led me to their a...00