Day 1/100 – Cracking Full Stack Developer Interview 🚀 Today I started with JavaScript Basics. - Explain About JavaScript Introduction - Difference between var, let and const - JavaScript data types (String, Number, Boolean, Object, etc.) 💻 Practiced: - Declaring variables indifferent ways - Tried simple operations using operators 🧠 Key Takeaway: let and const are safer than var because they follow block scope. #100daysofcode #javascript #webdevelopment #frontenddeveloper
JavaScript Basics Day 1 of 100
More Relevant Posts
-
🚀 Strengthening my Problem-Solving Skills with JavaScript! For the past few days, I have been focused on improving my JavaScript logic by practicing Array and String manipulation problems. I believe that building a strong foundation in these fundamentals is crucial for solving complex real-world problems and clearing technical interviews. I have officially started documenting my progress in a dedicated repository. As of today, I have successfully solved: ✅ Basic Level: Arrays (10/10 Questions) ✅ Basic Level: Strings (10/10 Questions) Working through these challenges has helped me understand how to manipulate data more efficiently and write cleaner code without always relying on high-level shortcuts. My next goal is to tackle the Intermediate Level challenges, focusing on more complex transformations and nested data. You can check out my solutions and the complete roadmap here: 👉 https://lnkd.in/dfYFjyci I would love your suggestions! If you have any interesting logic-building problems or resources that helped you during your journey, please share them in the comments. I’m always looking to learn more! 👇 #WebDevelopment #FrontendDeveloper #JavaScript #LogicBuilding #100DaysOfCode #CodingJourney #LearningInPublic #GitHub
To view or add a comment, sign in
-
-
🚀 Day 67 | JavaScript Loops & Array Iteration Today I practiced JavaScript loops and working with arrays of objects 💻 🔹 What I Worked On: • Iterated through array of objects using for loop • Printed all elements and accessed object properties like loc • Used loop with step increment (i += 2) to print alternate values • Practiced reverse counting using for and while loops • Used forEach() for cleaner array iteration 💡 Key Learning: • Arrays of objects are very common in real-world applications • Loop conditions must be handled carefully (i < length vs <= length) • forEach() is simple and readable for iteration • Multiple ways to loop → choose based on requirement 🔥 Takeaway: 👉 Mastering loops is key to handling data efficiently in JavaScript Consistency is improving logic step by step 🚀 #Day67 #JavaScript #Loops #ArrayIteration #ProblemSolving #CodingJourney #10000Coders #WebDevelopment #SravanKumarSir
To view or add a comment, sign in
-
Objects in JavaScript | Simple Real Life Examples Full video link 👇🏻👇🏻👇🏻👇🏻 https://lnkd.in/gkSUw7y3 In this video, we will learn about Objects in JavaScript including what an object is, how it works, and where it is used. Objects are one of the most important concepts in JavaScript and are widely used in real-world applications. In this tutorial, you will learn: - What is an Object in JavaScript V How to create objects - Accessing object properties - Adding & updating values - Real-life examples (user, cart, API data) Full video link 👇🏻👇🏻👇🏻👇🏻 https://lnkd.in/gkSUw7y3
Objects in JavaScript | Simple Real Life Examples
https://www.youtube.com/
To view or add a comment, sign in
-
Day 10 of My JavaScript Journey 🚀 Today, I learned about arrays in JavaScript. An array is a data structure used to store multiple values in a single variable. You can think of it as a container that holds different types of data. Example: let items = ["book", 10, true]; Arrays are written using square brackets [] and can even contain other arrays. I also learned some basic array operations: • push(): It adds a value to the end • pop(): It removes the last value • unshift(): It adds a value to the beginning • shift(): It removes the first value • indexOf(): It finds the position of a value • includes(): It checks if a value exists. One key thing I understood: Arrays make it easy to store, access, and manage multiple values efficiently. Key takeaway: Arrays are essential for handling collections of data in JavaScript. #JavaScript #WebDevelopment #LearningInPublic #100DaysOfCode
To view or add a comment, sign in
-
Day 66 | JavaScript Loops & Array Iteration Today I practiced JavaScript loops and working with arrays of objects🧑🏻💻 - What I Worked On: •Iterated through array of objects using for loop •Printed all elements and accessed object properties like loc •Used loop with step increment (i += 2) to print alternate values •Practiced reverse counting using for and while loops •Used forEach() for cleaner array iteration 💡 Key Learning: •Arrays of objects are very common in real-world applications •Loop conditions must be handled carefully (i < length vs <= length) •forEach() is simple and readable for iteration •Multiple ways to loop → choose based on requirement Takeaway: Mastering loops is key to handling data efficiently in JavaScript Consistency is improving logic step by step #Day66 #JavaScript #Loops #Arraylteration #ProblemSolving #CodingJourney #10000Coders #WebDevelopment #SravanKumarSir
To view or add a comment, sign in
-
Closures looked magical when I first learned JavaScript. Now I see them as one of the most practical tools in the language. A closure is just a function carrying the variables it needs from its surrounding scope. Simple idea, huge impact. You use closures in: event handlers React hooks debounce functions middleware private state factory functions The hard part is not the definition. The hard part is knowing when that captured value becomes stale. That one mistake explains many weird bugs: "Why is this state old?" "Why did this callback run with previous data?" "Why is my timer behaving strangely?" Deep JavaScript is mostly learning where values live, how long they live, and who can still access them. #JavaScript #FrontendDevelopment #WebDevelopment
To view or add a comment, sign in
-
Day 18/100 JavaScript Type Conversion Implicit conversion = hidden behavior Explicit conversion = controlled logic Great developers don’t just write code They remove uncertainty from systems That’s what I practiced today Database ID Mismatch example #100DaysOfCode #Theodinproject #javascript #webDev
To view or add a comment, sign in
-
-
🔥 JavaScript Devs — Why “Undefined” Causes So Many Real Bugs Hey devs 👋 One of the smallest values in JavaScript… Creates some of the biggest headaches 😅 👉 undefined often appears when: Missing API fields Wrong property names Unreturned functions Async race conditions 💥 Then suddenly: Cannot read property of undefined 💡 What helps: ✔ Optional chaining ?. ✔ Default values ?? ✔ Strong typing (TypeScript) ✔ Better API contracts ⚡ Senior insight: “Most runtime bugs start with assumptions.” Never assume data exists. What bug did undefined cause for you? #javascript #typescript #programmingtips #webdevelopment #frontenddeveloper #backenddeveloper #codingbestpractices #softwareengineering #jsbugs #cleanCode
To view or add a comment, sign in
-
-
🚀 Struggling to update an object inside an array in JavaScript? 🤔 In this video, I show the easiest way using .map() 🔥 💡 Learn: ✔️ Update objects cleanly ✔️ Avoid mutation ✔️ Real-world use cases https://lnkd.in/gfSbDfig #jsobjects
Update Array of Objects in JavaScript (Easy Trick)
https://www.youtube.com/
To view or add a comment, sign in
-
𝐃𝐚𝐲 𝟔/𝟑𝟎 🚀 𝐓𝐨𝐝𝐚𝐲 𝐈 𝐥𝐞𝐚𝐫𝐧𝐞𝐝: Generating random values and working with strings in JavaScript 𝐁𝐮𝐢𝐥𝐭: A password generator that creates random passwords using letters, numbers, and symbols 𝐊𝐞𝐲 𝐭𝐚𝐤𝐞𝐚𝐰𝐚𝐲: Used loops and random indexing to build a dynamic string generator #30DaysChallenge #WebDev #LearningInPublic
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