Day 8 of #100DaysOfCode Built a Stopwatch using JavaScript. Features: ⏱️ Start / Stop functionality. 🔄 Reset timer 📊 Real-time time tracking Continuing to improve my JavaScript fundamentals through small projects. Git-Hub Repo Link: https://lnkd.in/geZqCnQ9 #JavaScript #WebDevelopment #Frontend
More Relevant Posts
-
💻 JavaScript Array Methods – Hands-on Practice Completed Worked on some fundamental Array methods in JavaScript and practiced how they actually behave 👇 ✔️ Used push() and pop() to add/remove elements from the end ✔️ Used unshift() and shift() to work with elements at the beginning ✔️ Explored length to track array size ✔️ Understood the difference between slice() and splice() through practice 💡 Key takeaway: slice() does not modify the original array, while splice() directly changes it — this difference is really important while working with data. Practicing these basics is helping me build a strong foundation in JavaScript 🚀 #JavaScript #WebDevelopment #Frontend #CodingJourney #LearningByDoing
To view or add a comment, sign in
-
-
💡 JavaScript Tricky Question let a = 'hello'; a[0] = 'H'; console.log(a); 👉 Output: `hello` ✅ Explanation: Strings in JavaScript are **immutable** (cannot be changed). Even though it looks like we’re modifying `a[0]`, JavaScript ignores it. So the original string stays the same. 🔹 To change it, you must create a new string: a = 'H' + a.slice(1); #JavaScript #WebDevelopment #Frontend #Coding #JSConcepts
To view or add a comment, sign in
-
🧠 Day 2 of 21 days challenge JavaScript Closures 🤯 A function remembering its data even after execution is done. In simple words: Inner function can access outer function variables. Sounds simple… but super powerful 💥 Used in: • Counters • Private variables • React hooks 💤 For easy understanding : outer() returns a function inner() remembers the value of count 👉 this is called a closure This changed how I see JavaScript 🚀 #JavaScript #Closures #Frontend #React.js
To view or add a comment, sign in
-
-
Hoisting is a behavior in JavaScript where variable and function declarations are conceptually moved to the top of their containing scope (either the global script or a specific function) during the compilation phase, before the code is actually executed. It is important to understand that your code isn't physically moved anywhere. Instead, the JavaScript engine allocates memory for variable and function declarations before it executes the code line-by-line. #javascript #hoisting #frontend #scripting
To view or add a comment, sign in
-
-
🚀 JavaScript Fundamentals Series — Part 5 JavaScript introduced arrow functions to make functions cleaner and shorter. But they also behave differently from normal functions. In this guide I explain: • Arrow function syntax • Implicit return • Why arrow functions don't have their own this • When to use them (and when NOT to) Once you understand this, modern JavaScript becomes much easier to read. Full guide 👇 https://lnkd.in/d8sR5Hc5 #javascript #frontend #webdev
To view or add a comment, sign in
-
Built a small Dynamic List Creator using JavaScript DOM. Users can add, edit, and delete items. Simple project, but helped me understand how to create and manage elements dynamically. Learning with Chai Aur Code cohort ☕ #JavaScript #DOM #WebDev #Frontend #ChaiCode
To view or add a comment, sign in
-
🚀 JavaScript Fundamentals Series — Part 10 One of the most confusing concepts in JavaScript is this. In this guide I explain: • How this actually works • Why context changes • How call(), apply(), and bind() control function context • Real examples where these methods are useful Once you understand this concept, many JavaScript mysteries suddenly make sense. Full guide 👇 https://lnkd.in/dhG9wJqc #javascript #frontend #webdev
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