Mar 15 Β· 5 min read Β· What are Functions? Think of a function as a reusable recipe. Instead of writing out the same 10 steps every time you want to make a sandwich, you create a "MakeSandwich" function and just call it whe
Join discussion
Mar 12 Β· 21 min read Β· Introduction When you write JavaScript code, some functions and objects are always available no matter where you are in your program. You can call setTimeout(), use console.log(), or access Math.rando
Join discussion
Feb 18 Β· 5 min read Β· By the end of Day 34, students will be able to: β Understand how Node.js talks to MySQLβ Use mysql2 (latest & recommended package)β Create first backend API using MySQLβ Understand real-life backend flow π Quick Recap (Till Day 33) Till now student...
Join discussionFeb 13 Β· 5 min read Β· Introduction: How Do Developers Build Complete Web Apps? When you use a web application β whether itβs a shopping site, a job portal, or a project management dashboard β you are interacting with both frontend visuals and backend logic. Data moves fro...
Join discussion
Feb 12 Β· 9 min read Β· ποΈ Complete Folder Structure todo-app/ β βββ server.js βββ package.json βββ .env β βββ config/ β βββ db.js β βββ models/ β βββ User.js β βββ Todo.js β βββ Comment.js β βββ controllers/ β βββ userController.js β βββ todoController.js β ββ...
Join discussionFeb 12 Β· 4 min read Β· πΉ Why Do We Need Relationships in MongoDB? In real applications, data is connected. Real life example (Railway system π): One Train has many Coaches One User can have many Bookings One Booking belongs to one Train So the question is:π How do ...
Join discussion