DDivishtindivishtkori.hashnode.dev·Feb 22, 2025 · 4 min readPrototype JSIn JavaScript, every object has an internal property called [[Prototype]] (denoted as proto in modern engines). This prototype is a reference to another object from which it inherits properties and methods. Prototypes are key to achieving inheritance...00
DDivishtindivishtkori.hashnode.dev·Jan 24, 2025 · 3 min readMongoDB Aggregation pipelinesWhat are mongoDB aggregation pipelines ? MongoDB’s Aggregation Pipeline is a framework used to process data and perform operations on collections. It allows you to transform, filter, and aggregate data in a collection using a series of stages, each ...00L
DDivishtindivishtkori.hashnode.dev·Jan 23, 2025 · 8 min readInfo on JWT Web TokensWhat are tokens ? JSON Web Tokens (JWT) are a compact, secure, and standardized way to represent claims or information between two parties (e.g., client and server). They are commonly used for authentication and authorization in web apps. A JWT consi...00