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!
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.
🔹 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.
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
Follow these steps to change the color of multi-line and single-line comments:
1️⃣ Open Settings:
Navigate to File
→ Preferences
→ Settings
.
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!
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
- 🔗 Explore the MDN Web Docs for detailed JavaScript documentation.
- 🔧 Learn more about customizations & settings in Visual Studio Code.
💡 Stay tuned for more updates as I continue my learning journey! 🚀🔥