bitsofjs.hashnode.devFixing the CORS error by hosting your own proxy on HerokuFrom a beginner playing around with basic web APIs to an experienced developer building real-world solutions, we can all agree that consuming real-time data from web APIs is a very vital part of building truly functional and dynamic web applications....Mar 21, 2021·12 min read
bitsofjs.hashnode.devA Taste of Syntactic Sugar with Async/awaitWhat is syntactic sugar? In computer science, a syntax or feature designed to make a piece of code easier to express or to read within a programming language is referred to as syntactic sugar. It makes the language "sweeter" for human use: things ca...Mar 1, 2021·9 min read
bitsofjs.hashnode.devMaking Promises in JavaScriptThanks to the asynchronous nature of JavaScript, we have a couple of features that allow us to run non-blocking chunks of code, which means other parts of our code get executed without delay. One such feature and the concern of this article is the pr...Feb 12, 2021·15 min read