'S'Tobiloba Samuelintobisamcodes.hashnode.dev·Feb 3, 2024 · 2 min readReact core featuresReact is a popular JavaScript library for building user interfaces, developed and maintained by Facebook. It provides a declarative and component-based approach to building interactive and efficient UIs. Here are some key features of React: Componen...00
'S'Tobiloba Samuelintobisamcodes.hashnode.dev·Feb 1, 2024 · 2 min readHow the React Virtual DOM WorksThe Virtual DOM (Document Object Model) in React is a programming concept where a lightweight, in-memory representation of the actual DOM is created. The main purpose of the Virtual DOM is to improve the efficiency of updating the user interface by m...00
'S'Tobiloba Samuelintobisamcodes.hashnode.dev·Jul 22, 2023 · 3 min readJsx/es5/es6ES5(the ES stands for ECMAScript) is basically “regular JavScript”. The 5th update to JavaScript, ES5 was finalized in 2009. It has been supported by major browsers for several years. Therefore if you’ve written JavaScript in the recent past, chances...00
'S'Tobiloba Samuelintobisamcodes.hashnode.dev·Jul 22, 2023 · 3 min read5 ways to make HTTP requests in JavaScriptModern JavaScript provides a number of ways to send HTTP requests to remote servers. From the native XMLHttpRequest object to third-party libraries like Axios, having such a varied collection of picks has made requesting and dynamically loading conte...00
'S'Tobiloba Samuelintobisamcodes.hashnode.dev·Jan 10, 2023 · 8 min readRestful API for a Blog Service with NodeJS Express, MongoDB and MongooseIntroduction In this tutorial article, we will create a simple blog that blog visitors can read blog posts available. This allows us to explore the operations that are common to almost every blog application, retrieving article content from a databas...00