Nguyen-Blog
About
  • Published on
    Hey there! Are you looking for a quick way to highlight coding syntax on your website? Check out Prism.js Loader. Simply grab the script and place it at the end of your web page, then you're all set! If you're curious about how the script works, keep reading.
  • Published on
    In React projects, it's common to have hundreds of components—or even more—as the project evolves and scales. Without proper organization and design guidelines, managing these components can become challenging, making it difficult to locate or update them efficiently. In this post, I'll share my experiences and insights on designing and organizing React components in ways that I believe are beneficial for React projects overall.
  • Published on
    In this post, I am outlining some fundamental notes about TypeScript that I believe will be helpful for developers starting their coding journey with TypeScript. Let's dive in!
  • Published on
    Javascript doesn't have a date data type, instead it introduces Date object which is an integer number representing the number of milliseconds passed since midnight at the beginning of 01 January, 1970 UTC. Put in other words, Javascript Date objects use a time value that is an offset in milliseconds since 1970-01-01T00:00:00Z (UTC).
  • Published on
    JavaScript is a versatile and widely used programming language that enhances the interactivity and functionality of modern web applications. In this article, we explore fascinating aspects of JavaScript that will deepen our understanding of the language.
  • Published on
    Have you ever noticed food labels warning you to discard the contents after a certain number of days? That made me wonder: how can we create a variable in JavaScript that automatically discards its content after X uses? Let's explore some implementations.