Building skills through consistency. 02/100 #100DaysOfCode Continued JavaScript fundamentals by developing 2 mini projects: • Calculator • Student Report System (average calculation using arrays) Strengthening JS logic & problem-solving skills. #JavaScript #FrontendDevelopment
More Relevant Posts
-
Project 6 – Text To Speech Converter Built a Text to Speech Converter using JavaScript and the Web Speech API 🎙️This project improved my understanding of: • Browser APIs • Async voice loading • Event handling • Debugging real issues Learning by building small projects consistently 💻 #JavaScript #WebDevelopment #APILearning #StudentDeveloper
To view or add a comment, sign in
-
Day 10 – JavaScript Practice Today I worked on: ✓Taking numeric user input using HTML ✓Using JavaScript functions ✓Applying mathematical formula in JS ✓DOM manipulation with getElementById() I built a Fahrenheit to Celsius Converter where: ---> User enters temperature in Fahrenheit ---> Program converts it into Celsius using JavaScript ---> Result is displayed instantly with 2 decimal precision #JavaScript #WebDevelopment #Day10 #Practice #LearningJourney #DOM #Coding
To view or add a comment, sign in
-
JavaScript Fundamentals - Building the Right Base Strengthened my understanding of JavaScript fundamentals by experimenting directly in code. Covered: JavaScript data types Difference between let, var, and const == vs === and type coercion null vs undefined (when and why they appear) Key learning: Most bugs don’t come from advanced code - they come from weak fundamentals. Focusing on clarity before complexity. #JavaScript #JavaScriptLearning #FrontendDevelopment #WebDevelopment #CodingJourney #LearningInPublic #FunctionsInJavaScript #Hoisting
To view or add a comment, sign in
-
-
🚀 Mastering Operators in JavaScript From arithmetic and comparison to logical and ternary operators — understanding operators is the foundation of writing powerful JavaScript logic. If you want to build strong problem-solving skills in JS, start with operators. 💻🔥 #JavaScript #WebDevelopment #FrontendDeveloper #Pyspiders #LearnToCode #TechSkills
To view or add a comment, sign in
-
-
Day 10/30 – JavaScript Once Function 🧠 | Ensure a Function Runs Only Once💻🚀 🧠 Problem: Given a function fn, return a new function that: Executes fn only once Returns the result on the first call Returns undefined on all subsequent calls ✨ This challenge helped me understand: Closures & state preservation Function wrappers How real-world features like one-time events, initialization logic, and API guards work This pattern is commonly used in: ⚡ Event listeners ⚡ Authentication flows ⚡ Performance optimization 💬 Where would you use a “run once” function? Comment below 👇 #JavaScript #30DaysOfJavaScript #CodingChallenge #Closures #JSLogic #LeetCode #WebDevelopment #LearnToCode #CodeEveryday #DeveloperJourney #Programming #TechCommunity JavaScript once function Call function only once JS JavaScript closures example Higher order functions JavaScript LeetCode JavaScript solution JS interview questions Beginner JavaScript practice Daily coding challenge
To view or add a comment, sign in
-
-
Day 6/30 – Build Your Own Filter Function in JavaScript 🧠 | No Array.filter() 🧠 Problem: Implement a filtering function without using Array.filter(). The function should: Take an array arr Use a function fn(value, index) Return a new array containing only truthy results ➡️ filteredArr includes elements where Boolean(fn(arr[i], i)) === true ✨ This challenge helped me deeply understand: Truthy vs Falsy values Conditional array processing How JavaScript array methods work internally Rebuilding core methods = stronger fundamentals 💪 💬 Share your approach or optimize mine in the comments! #JavaScript #30DaysOfJavaScript #CodingChallenge #ArrayFilter #JSLogic #LeetCode #WebDevelopment #LearnToCode #CodeEveryday #DeveloperJourney #Programming #TechCommunity JavaScript custom filter Implement filter without filter Truthy and falsy JavaScript JavaScript array filtering logic LeetCode JavaScript solution JS interview preparation Beginner JavaScript practice Daily coding challenge
To view or add a comment, sign in
-
-
🚀 Day 17 of #100DaysOfCode — JavaScript Logic Mode ON ⚡ Today was all about decision-making in JavaScript. ✅ Topics Covered: console.log() and linking JS files Template Literals Operators in JS Comparison Operators Comparison for Non-numbers Conditional Statements if, else if, else Nested if-else Logical Operators (&&, ||, !) Truthy & Falsy values Practice Questions 🧠 Big Learning Today: JavaScript comparisons are tricky. == vs === can completely change results. Also understood how truthy and falsy values actually control program flow — something that seems simple but is very powerful. Every day I’m connecting C++ logic with JavaScript thinking. Consistency > Motivation 💪 On to Day 18 🚀 #100DaysOfCode #Day17 #JavaScript #WebDevelopment #FrontendDeveloper #CodingJourney #Consistency #LearningInPublic #StudentDeveloper #ManavRachna
To view or add a comment, sign in
-
🚀 JavaScript Basics – var vs let vs const While revising core concepts, I refreshed my understanding of variable declarations in JavaScript. Here’s a quick breakdown: 🔹 var • Function scoped • Can be redeclared • Can be updated 🔹 let • Block scoped • Cannot be redeclared in the same scope • Can be updated 🔹 const • Block scoped • Cannot be redeclared • Cannot be reassigned 💡 Best Practice: Use const by default. Use let when the value needs to change. Avoid using var in modern JavaScript. Strong fundamentals = Strong development skills. #javascript #webdevelopment #frontenddeveloper #coding #learninginpublic #100DaysOfCode
To view or add a comment, sign in
-
-
Day 37/100 🚀 Object basics in JavaScript — creating objects, accessing properties, using operators, and understanding objects vs primitive data types. #100DaysOfCode #JavaScript #WebDev
To view or add a comment, sign in
-
-
💡 Sunday Dev Tip: JavaScript Array Methods Stop writing loops. Use array methods instead! ❌ Traditional Loop: let doubled = []; for (let i = 0; i < numbers.length; i++) { doubled.push(numbers[i] * 2); } ✅ Modern Approach: const doubled = numbers.map(n => n * 2); Master These Methods: → .map() - Transform each element → .filter() - Keep elements that match → .reduce() - Calculate single value → .find() - Get first match → .some() / .every() - Test conditions Your code becomes: ✅ More readable ✅ Less error-prone ✅ Easier to maintain ✅ More functional Which array method do you use most? 💬 #JavaScript #CleanCode #WebDevelopment #CodingTips #ES6
To view or add a comment, sign in
Explore related topics
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
crying ?? keep doing it