๐ 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 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!
๐ 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! ๐๐ฅ