Exploring JavaScript Prototype Inheritance
Object.create() creates objects inheriting through the prototype chain, while 'new' with a constructor directly inherits properties
- #javascript
Object.create() creates objects inheriting through the prototype chain, while 'new' with a constructor directly inherits properties
Let's learn about what is nullish coalescing operator and how it is different from a logical OR operator!
Reflected on my Next.js journey: app dir, API route files, Redux Toolkit for state mgmt, SQL queries through a game, and AWS Amplify deployment.
Part 1 covered setting up Redux Toolkit and topSlice function and then how would I refactor the codebase to make it cleaner and more readable way
This guide provides a step-by-step process for setting up Redux Toolkit with Next.js, enabling you to easily manage state in your web applications
Reflected on what I learned about run TS node app, ch 1 of the System Design, LCP and CLS from Lighthouse, and run a tests array with one of Jest's features.
Set up & deploy TypeScript Node.js app: Learn how to enable TypeScript, run locally 3 ways, & deploy the app with this guide.
Reflected on Hacker News clone learnings, especially Redux Toolkit. Gained Cypress API familiarity by writing e2e tests.
The reduce function is one of the built-in methods in JS that allow you to transform an array into a single value by iterating over each element in the array.
Learn about JavaScript Map: its keyed collection, differences from objects & how to perform CRUD operations using Map methods.