Day 11 of Learning JavaScript 💻 Today I understood something important: Code readability matters. Example: Using forEach() made my code cleaner compared to a long loop. Good code is not just working code — it's readable code. #javascript #frontenddeveloper
JavaScript Code Readability Matters
More Relevant Posts
-
🚀 𝐃𝐚𝐲 𝟏/𝟏𝟓 𝐌𝐲 𝐉𝐚𝐯𝐚𝐒𝐜𝐫𝐢𝐩𝐭 𝐋𝐞𝐚𝐫𝐧𝐢𝐧𝐠 𝐒𝐞𝐫𝐢𝐞𝐬 Today I started with the basics of JavaScript — Variables 💡 👉 Variables are used to store data In JavaScript, we mainly use: var (old way) let (modern & recommended) const (for fixed values) 📌 Example: let name = "Kanishka"; const age = 21; 👉 let → value can be changed 👉 const → value cannot be changed Simple, right? 😄 But these small concepts are the foundation of everything in JavaScript! I’m learning step by step and sharing my journey here 💻✨ 💬 Question: Do you prefer let or const while coding? Let’s learn together 🚀 #JavaScript #WebDevelopment #LearningInPublic #Day1 #FrontendDevelopment
To view or add a comment, sign in
-
-
Revisited Namaste JavaScript — and it hit differently this time. Concepts like closures, hoisting, and the event loop that once felt confusing now make much more sense. Sometimes, going back to the basics is what actually levels you up. #JavaScript #WebDevelopment #Learning
To view or add a comment, sign in
-
-
JavaScript becomes a different language the moment you realize this: 👉 Functions are not just reusable blocks… they are values. And once you understand that, concepts like callbacks and higher-order functions stop feeling confusing and start feeling natural. In this video, I’ve broken it down step by step: How values behave in JavaScript How objects behave Why functions behave the same way (and why that matters) From there, everything builds logically: ✔ Passing functions as arguments ✔ Returning functions from functions ✔ What exactly a callback is ✔ What a higher-order function is ✔ How this leads to more flexible and reusable code No jargon. No unnecessary complexity. Just a clear, practical approach to a core JavaScript concept. 🎥 Watch here: https://lnkd.in/gM8ibZ6M This is Part 1 — next, we’ll explore how this shows up in real code with: setTimeout, forEach, map, filter #JavaScript #WebDevelopment #FrontendDevelopment #Programming #Coding #LearnToCode #JavaScriptDeveloper #SoftwareDevelopment #Developers #CodingJourney #TechEducation #Hosiyar #JS
Callback Functions and Higher Order Functions in JavaScript | JS Mastery #12
https://www.youtube.com/
To view or add a comment, sign in
-
🚀 Learning JavaScript? Start with Strings. Strings are one of the most used things in JavaScript. If you can work with text, you can build forms, messages, search features, and much more. Let’s understand the basics 👇 • Create a string using quotes let name = "JavaScript"; • Find string length name.length • Join strings together "Hello " + "World" • Change text case name.toUpperCase() or name.toLowerCase() • Get part of a string name.substring(0,4) Small concept… but used everywhere in real projects. Master the basics → coding becomes easier. #JavaScript #WebDevelopment #FrontendDevelopment #LearnToCode #ProgrammingBasics #JavaScriptTips #CodingForBeginners #DeveloperCommunity #TechEducation #SoftwareDevelopment
To view or add a comment, sign in
-
-
Day 8 of My JavaScript Journey 🚀 Today, I started learning about functions in JavaScript. Functions are used to group and reuse code, making programs more organized and efficient. There are three types of functions: • Function declaration • Function expression • Arrow function Today, I focused on function declaration. Example: function greet(name) { return "Hello " + name; } One thing I noticed: Functions can feel a bit difficult at first, but they are a core part of JavaScript. So instead of rushing, I’m taking my time to truly understand how they work. Key takeaway: Mastering functions is essential because they are used everywhere in JavaScript. #JavaScript #WebDevelopment #LearningInPublic #100DaysOfCode
To view or add a comment, sign in
-
Why learning Javascript language is hard? The truth JavaScript is not hard because it’s impossible. It’s hard because: It has quirks It gives too many choices Tutorials often jump ahead too fast If you slow down and focus only on the basics, it becomes much easier Think of JavaScript in a simple way At its core, JavaScript is just: Variables → store data Functions → do something Conditions → make decisions Loops → repeat things That’s the foundation. .
To view or add a comment, sign in
-
-
Work in progress 💻 Deep in the code today, building out new functionality for Scrimba Advance JavaScript. Sometimes the best commits are the ones that say "promise" twice because that's exactly what clean, asynchronous code delivers. Those small, focused commits? That's where the real progress happens. 𝖶𝖺𝗇𝗍 𝗍𝗈 𝗅𝖾𝖺𝗋𝗇 coding click 𝗁𝖾𝗋𝖾 👉🏽 : https://shorturl.at/cESup #WebDevelopment #JavaScript #Coding
To view or add a comment, sign in
-
-
Javascript: Quotes in strings ⚠️ A small mistake with quotes can break your JavaScript code. Many beginners face this problem when working with strings. In JavaScript, quotes are used to create text. But using the wrong quote inside a string can cause an error. Here are the basics 👇 • Use single quotes let text = 'Hello World'; • Use double quotes let text = "Hello World"; • Use backticks (template strings) let text = `Hello World`; • Use different quotes inside a string "I'm learning JavaScript" • Escape quotes if needed 'It\'s JavaScript' Learning this small concept will save you from many syntax errors. #JavaScript #WebDevelopment #FrontendDevelopment #LearnJavaScript #CodingForBeginners #ProgrammingTips #SoftwareDevelopment #TechLearning #DeveloperSkills #CodeNewbie
To view or add a comment, sign in
-
-
Hoisting in JavaScript looks confusing at first, but the idea is actually simple. JavaScript reads declarations before it starts running the code. That’s why: Function declarations can work before they appear in the file var gives undefined if you use it too early let and const exist too, but you can’t use them before their line The easiest way to remember it: JavaScript prepares first, then executes. Once I understood this, a lot of “weird” JavaScript behavior started making sense. Good practice: don’t depend on hoisting too much. Write declarations clearly so the code is easy to read for you and everyone else. #JavaScript #Frontend #WebDevelopment #Programming
To view or add a comment, sign in
-
-
🤔 JavaScript Quiz Time! What’s the output? 👇 !!null; !!''; !!1; A | false true false B | false false true C | false true true D | true true false 🧠 Think before you scroll… Simple-ah theriyum… but tricky 😏 Most beginners inga than confuse aaguraanga 👀 💡 Hint: null → falsy "" → falsy 1 → truthy 🔥 Pro Tip: !!value → converts anything into boolean (true / false) 👇 Comment your answer Let’s see who gets it right 😎 📌 Save for later 👥 Share with your coding friends #javascript #jsquiz #webdevelopment #codingchallenge #frontenddeveloper #mernstack #learncoding #programmingtips #developerlife #codingforbeginners #100daysofcode #techcontent #edblack
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