Skip to content

Madhav-P-2005/Code-With-JavaScript

Repository files navigation

🚀 My JavaScript Learning Journey

🌱 Why This Repository?

As I dive into my journey of becoming an aspiring Full-Stack Web Developer, I believe that documenting my learnings will help me solidify my understanding and provide a valuable resource for future reference.

This repository serves as my personal knowledge hub 📚, where I :-
✅ Take notes on key JavaScript concepts.
✅ Store PDFs, practice questions, and projects 💻.
✅ Keep track of important syntax & coding patterns ✍️.

So, whenever I need to revisit a concept or recall a syntax, I can quickly access my learnings here!


🎯 My Learning Source

I'm currently learning JavaScript from Shradha Khapra 📺 through the course :-

🎥 JavaScript Full Course [2024] by Shradha Khapra 🎓

This course is helping me build a strong foundation in JavaScript, covering both theory and hands-on projects to improve my javaScript skills.


📂 What's Inside This Repository?

🔹 Notes & Summaries - Key takeaways from my learning sessions.
🔹 Code Snippets - Important syntax and real-world examples.
🔹 Practice Questions - Coding challenges to test my skills.
🔹 Projects - Small & large-scale projects to apply what I learn. 🔹 PDFs & Resources - Helpful study material.


✨ Customizing JavaScript Comment Colors in VS Code 🎨

By default, comments in JavaScript appear in green, but you can customize them using VS Code settings. Unlike Python's ''' for multi-line comments, JavaScript uses:

  • /* ... */ for multi-line comments
  • // for single-line comments

🎨 Steps to Customize Comment Colors in VS Code

Follow these steps to change the color of multi-line and single-line comments:

1️⃣ Open Settings:
Navigate to FilePreferencesSettings.

2️⃣ Search for "color theme" and select Workbench: Color Customizations.

3️⃣ Add the Following JSON to customize comment colors:

"textMateRules": [ 
  { 
    "scope": "comment.block",
    "settings": { 
      "foreground": "#FFD700" // Gold/yellow color for multi-line comments 
    } 
  }, 
  { 
    "scope": "comment.line", 
    "settings": { 
      "foreground": "#FF69B4" // Pink color for single-line comments 
    } 
  } 
]

4️⃣ Save & Restart 🔄

  • Save your settings and restart VS Code to apply the changes!

📌 My Goal

By maintaining this repository, I aim to :-

  • 🚀 Strengthen my JavaScript skills for full-stack development.
  • 💡 Build a solid foundation for working with React, Node.js, and backend technologies.
  • 📝 Create a structured reference guide for myself and others.

📚 Additional Resources

📘 JavaScript Documentation

  • 🔗 Explore the MDN Web Docs for detailed JavaScript documentation.

🖥️ VS Code Documentation

  • 🔧 Learn more about customizations & settings in Visual Studio Code.

💡 Stay tuned for more updates as I continue my learning journey! 🚀🔥

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published