Profile picture

Written by Tyler Minegar who lives and works in CA building useful things. You can find me on Linkedin

  1. February 14, 2021

    In this article, I will discuss my journey from being an anti-TypeScript developer to a developer who now couldn’t think of going back to…

  2. January 16, 2021

    With the release of React 16.8 in 2019, React Hooks have finally become available to use in our production applications. Hooks allow React…

  3. December 24, 2020

    ES6 introduced a new way of working with functions and iterators in the form of Generators (or generator functions). A generator is a…

  4. November 25, 2020

    Being a good programmer is a mix of skills and some common sense. It is all about being pragmatic and knowing what is the solution that fits…

  5. October 10, 2020

    In this article i want to explain you about when to use what. For which problem functional programming is good and for which problem OOP is…

  6. September 09, 2020

    My aim is that after you read this article, you understand what is a functional programming. There is lot of articles for OOP, myself have…

  7. June 07, 2020

    The async/await introduced by ES7 is a fantastic improvement in asynchronous programming with JavaScript. It provided an option of using…

  8. April 15, 2020

    The keyword async was implemented in ES2017. It makes it possible to create naturally asynchronous functions using the following notation…

  9. March 14, 2020

    Promises are a native JavaScript implementation to more elegantly and simply handle asynchronous data. Just like promises in the real world…

  10. February 18, 2020

    Also known as the oldest way to handle asynchronous data, callbacks allow us to inject a function into an asynchronous execution so that we…