This is how to deal with imposter Syndrome ๐
-Acknowledge achievements: Recognize success.
-Positive affirmations: Boost confidence
-Seek support: Share feelings
Realistic goals: Break tasks down.
-Celebrate progress: Acknowledge victories
-Continuous learning: Embrace growth.
#motivation
@javascript_resources
-Acknowledge achievements: Recognize success.
-Positive affirmations: Boost confidence
-Seek support: Share feelings
Realistic goals: Break tasks down.
-Celebrate progress: Acknowledge victories
-Continuous learning: Embrace growth.
#motivation
@javascript_resources
5 Commonly Used Units of Measurement in CSS:
1. Pixels (px)
2. Percentages (%)
3. Rem
4. Em
5. Viewport units (vw, vh)
@javascript_resources
1. Pixels (px)
2. Percentages (%)
3. Rem
4. Em
5. Viewport units (vw, vh)
@javascript_resources
๐3
MERN Stack Developer Roadmap 2024:
Step 1: ๐ Master Web Basics
Step 2: ๐ฅ HTML/CSS Proficiency
Step 3: โจ Deep Dive into JavaScript
Step 4: ๐ Version Control with Git
Step 5: ๐ Node.js for Server-Side
Step 6: ๐ Express.js for Routing
Step 7: ๐ฆ NPM for Package Management
Step 8: ๐ MongoDB for Databases
Step 9: ๐ React.js for Frontend
Step 10: ๐ Implement Security (JWT)
Step 11: ๐ App Deployment (Heroku, Netlify)
Step 12: ๐ณ Docker Basics
Step 13: โ๏ธ Explore Cloud Services
Step 14: ๐ CI/CD with GitHub Actions
Step 15: ๐งช Testing with Jest
Step 16: ๐ API Documentation
Step 17: ๐ข Build a Portfolio
Step 18: ๐ผ Resume Crafting
Step 19: ๐ Interview Preparation
Step 20: ๐ Job Hunting Strategy
Step 1: ๐ Master Web Basics
Step 2: ๐ฅ HTML/CSS Proficiency
Step 3: โจ Deep Dive into JavaScript
Step 4: ๐ Version Control with Git
Step 5: ๐ Node.js for Server-Side
Step 6: ๐ Express.js for Routing
Step 7: ๐ฆ NPM for Package Management
Step 8: ๐ MongoDB for Databases
Step 9: ๐ React.js for Frontend
Step 10: ๐ Implement Security (JWT)
Step 11: ๐ App Deployment (Heroku, Netlify)
Step 12: ๐ณ Docker Basics
Step 13: โ๏ธ Explore Cloud Services
Step 14: ๐ CI/CD with GitHub Actions
Step 15: ๐งช Testing with Jest
Step 16: ๐ API Documentation
Step 17: ๐ข Build a Portfolio
Step 18: ๐ผ Resume Crafting
Step 19: ๐ Interview Preparation
Step 20: ๐ Job Hunting Strategy
๐ฅ5๐2
โก๏ธparseInt()
and
โก๏ธNumber()
both converts string to number however there is a big difference between both
โก๏ธ parseInt() reads the string from left to right & stops parsing when it encounters a non-numeric character.
It returns the numeric value parsed up to that point.
example: parseInt("19abc") -> returns 19
โก๏ธNumber() is more strict.
If the string contains any non-numeric characters (except for whitespace), it returns NaN
example: Number(123abc) -> returns NaN
โก๏ธAlso if string is in float then Number() will return float number but parseInt() will only return integer.
example:
parseInt("6.9") -> returns 6 only
Number("18.5") -> returns 18.5
This makes a big impact especially when you are handling data that can have string values as well attached to the number.
In that case use parseInt() other wise use Number().
@javascript_resources #javascript
and
โก๏ธNumber()
both converts string to number however there is a big difference between both
โก๏ธ parseInt() reads the string from left to right & stops parsing when it encounters a non-numeric character.
It returns the numeric value parsed up to that point.
example: parseInt("19abc") -> returns 19
โก๏ธNumber() is more strict.
If the string contains any non-numeric characters (except for whitespace), it returns NaN
example: Number(123abc) -> returns NaN
โก๏ธAlso if string is in float then Number() will return float number but parseInt() will only return integer.
example:
parseInt("6.9") -> returns 6 only
Number("18.5") -> returns 18.5
This makes a big impact especially when you are handling data that can have string values as well attached to the number.
In that case use parseInt() other wise use Number().
@javascript_resources #javascript
AI for Beginners by Microsoft
Free AI for Beginners Course from Microsoft.
Don't miss it! Course link ๐
Free AI for Beginners Course from Microsoft.
Don't miss it! Course link ๐
๐ฅ1
-Coding is so simple.
-Don't listen to what people say.
-Some will discourage you.
-Some will say it's difficult.
-Try it
-Experience it by yourself,
-Then answer yourself whether it's difficult or simple
-Happy Coding
#motivation
@javascript_resources
-Don't listen to what people say.
-Some will discourage you.
-Some will say it's difficult.
-Try it
-Experience it by yourself,
-Then answer yourself whether it's difficult or simple
-Happy Coding
#motivation
@javascript_resources
๐3๐ฅ2โค1
4 Harsh Truths About Life
1. Relationships that come naturally are the strongest
2. You can not reach all your goals
3. You can not know everything, although you should
4. You need to sacrifice yourself to make the world care about you
@javascript_resources
#motivation
1. Relationships that come naturally are the strongest
2. You can not reach all your goals
3. You can not know everything, although you should
4. You need to sacrifice yourself to make the world care about you
@javascript_resources
#motivation
โค2