POPaul O.inmodular.hashnode.dev·Jan 25, 2024 · 7 min readRethinking JS Array Methods (Part 2)Preamble: There are currently 43 JavaScript Array methods listed at the MDN website. This discussion mentions 27 methods I've seen and used often in code. In Rethinking JavaScript Array Methods (Part 1), I stated that each Array method could basicall...00
POPaul O.inmodular.hashnode.dev·Dec 26, 2023 · 4 min readRethinking JavaScript Array MethodsPreamble: There are currently 43 JavaScript Array methods listed at the MDN website. This discussion includes about 25 of them... those that I tend to use. Organizing Array Methods To better understand and remember JavaScript Array methods, we can di...01L
POPaul O.inmodular.hashnode.dev·Dec 13, 2023 · 7 min readAPI fetch() - Promise chaining or async/await?Topics: Try/catch/finally Promise chaining Async/await JSON Fetch API calls Try/catch/finally Often used to check data-processing code that fails with incorrect input, it has three components: a try-block, a catch-block, and (as needed) a fin...02DL