🚀 Day 18 of #100DaysOfCode — Revision Till Arrays 🔁💻 Today was all about strengthening foundations. Instead of jumping into new topics, I revised everything in JavaScript up to Arrays. ✅ Revised Topics: Variables (let, const, var) Data Types Operators & Comparisons Conditional Statements Logical Operators Truthy & Falsy values Template Literals Arrays (basics & indexing) 🧠 Big Realization: Revision makes concepts clearer than the first time learning them. When I first studied these topics, I understood the syntax. Today, I understood the logic behind them. Strong fundamentals > Fast progress. Consistency continues 💪 On to Day 19 🚀 #100DaysOfCode #Day18 #JavaScript #WebDevelopment #Programming #Consistency #LearningInPublic #StudentDeveloper #ManavRachna
Shashwat .’s Post
More Relevant Posts
-
🔥 Day 1 of JavaScript Learning I explored the basics of JavaScript today: 📌 Variables – var, let, and const 📌 Data Types – • String • Number • Boolean • Null • Undefined • Object Learning how JavaScript handles data is helping me understand how real-world applications work behind the scenes. Excited to build more projects soon! 🚀 #JavaScript #100DaysOfCode #Programming #DeveloperLife #WebDev
To view or add a comment, sign in
-
Had an amazing learning session with Samarth Vohra on Variables and Data Types in JavaScript. Before this class, I knew how to use variables — but today I understood why they behave the way they do. Some key insights: ✔ Why var can cause unexpected behavior ✔ How let and const improve code reliability ✔ The importance of understanding primitive vs reference types ✔ How JavaScript performs type coercion What changed my perspective is realizing that strong fundamentals prevent major bugs later. Grateful for the clarity and guidance 🙏 Excited to dive deeper into JavaScript! #JavaScript #Programming #DeveloperJourney
To view or add a comment, sign in
-
-
🚀 JavaScript Fundamentals Series — Part 6 Arrays are how JavaScript stores lists of data. Almost every real application uses arrays. This guide explains: • How arrays work internally • Accessing and updating values • Looping through arrays • Common array mistakes If you understand arrays well, working with data becomes much easier. Full guide 👇 https://lnkd.in/d2b6G9qm #javascript #programming #coding
To view or add a comment, sign in
-
🚀 Understanding JavaScript Objects – A Beginner’s Guide Blog Linke :~ https://lnkd.in/gC94PJCx Today, we explored the basics of JavaScript objects – their structure, how to access, update, add, and delete properties, and how to loop through keys. Objects are a powerful way to organize data and model real-world entities in JavaScript. #JavaScript #WebDevelopment #Coding #Programming #LearnJavaScript #TechTips Chai Aur Code Hitesh Choudhary Jay Kadlag Akash Kadlag Piyush Garg
To view or add a comment, sign in
-
-
Just published a new blog on JavaScript Arrays. When we start programming, we often store values like this: let movieOne = "Inception" let movieTwo = "Interstellar" let movieThree = "Dune: Part Two" This works for small data, but imagine storing 50 movies or 100 student marks. Managing individual variables quickly becomes messy. That is where arrays help. In this blog I covered: What arrays are in JavaScript Different ways to create arrays Accessing elements using indexes Updating array values Understanding the length property Looping through arrays using a simple for loop Arrays are one of the most commonly used data structures in JavaScript and understanding them early makes working with data much easier. link: https://lnkd.in/dYQtZ4P6 #javascript #coding #programming #learninpublic #chaicode
To view or add a comment, sign in
-
-
You gotta give it to JavaScript for it's simplicity of structure with everything being an object. Even your arrays are psuedo-arrays and actual objects.
🚀 Backend Developer | NodeJs, NestJs, ExpressJs 💻 | MongoDB 🍃, Sequelize/MySQL/Postgres 🐬🐘 | MSSQL | TypeScript ✨ | AWS ☁️ CDK | Lambda ⚡ | Docker 🐳 | REST API 🔗 | Git 🔧 | TypeORM 🗄️ | gRPC | MicroServices
JavaScript: "4" + "3" → 43 This isn’t a bug. It’s a reminder. Computers don’t understand intent. They understand instructions. Most production bugs don’t come from bad languages — They come from unclear assumptions. Write precise code. Think like the machine. That’s where real engineering begins. JavaScript Mastery w3schools.com #JavaScript #SoftwareEngineering #WebDevelopment #Programming #DeveloperMindset #LearningInPublic
To view or add a comment, sign in
-
-
I wrote a small JavaScript example to practice callbacks and asynchronous programming. The code simulates fetching a user’s data step by step: first the ID, then the name, then the surname.
To view or add a comment, sign in
-
-
🔸 I recently started doing LeetCode again and have solved around 400 problems using JavaScript, across topics like dynamic programming, greedy, trees, graphs, recursion, arrays, and more I have done DSA before, but this time, something clicked. I realised that problem-solving becomes much easier once you start recognising the underlying patterns. The questions may still be difficult to code, but you’re no longer confused about what the problem actually wants from you. And that clarity changes everything. Instead of feeling stuck or overwhelmed, your mind starts breaking problems down naturally. You focus on constraints, edge cases, and trade-offs rather than panicking over the solution. That’s when you understand that real growth doesn’t come from memorising answers. It comes from training your brain to think in patterns Stay consistent Trust the process The “click” will come Pic Credit: AlgoMaster.io page #dsa #leetcode #javsacript #programming #technology #softwaredevelopment #competitiveprogramming #ig
To view or add a comment, sign in
-
-
Over the last few weeks, I’ve been exploring Python backend development, especially Django and FastAPI. Today I learned some key differences between them. Django vs FastAPI 🔹 Django A full-stack web framework Comes with built-in features like ORM, authentication, admin panel Best for large applications and rapid development Uses synchronous programming (WSGI) by default Slightly heavier but very structured 🔹 FastAPI A modern, high-performance API framework Designed mainly for building APIs Uses asynchronous programming (ASGI) Automatic interactive API docs (Swagger & ReDoc) Very fast and lightweight 💡 My takeaway: Django is great when you want a complete web framework, while FastAPI is perfect when you need high-performance APIs or microservices. #Python #Django #FastAPI #BackendDevelopment #WebDevelopment #LearningInPublic
To view or add a comment, sign in
-
-
FastAPI with Docker Compose: Streamlining Development and Deployment In the ever-evolving landscape of web development, building and deploying applications efficiently is crucial. FastAPI, with its speed and modern Python features, has gained immense popularity. However, managing the dependencies, configurations, and deployment of a FastAPI application can quickly become complex. This is where Docker Compose comes in. Docker Compose simplifies the process by allowing you to define and run multi-container Docker applications....
To view or add a comment, sign in
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development
Revision question for devs 👇 How often do you revise fundamentals while learning something new? I’ve started doing weekly revisions and it really helps 🔥 #100DaysOfCode