MohitSChauhan Profile Banner
Mohit Singh Chauhan Profile
Mohit Singh Chauhan

@MohitSChauhan

Followers
60
Following
770
Media
20
Statuses
244

Full Stack Developer | Writing what I learn checkout my blogs

Agra, India
Joined October 2014
Don't wanna be here? Send us removal request.
@MohitSChauhan
Mohit Singh Chauhan
2 years
Thrilled to share that my latest article has been featured in the official MongoDB newsletter! πŸš€. Excited to contribute to the community and explore the power of #MongoDB. Thanks for the support!. #Tech #Database #FeaturedArticle. Article :
Tweet media one
1
2
11
@MohitSChauhan
Mohit Singh Chauhan
1 month
Hey @grok , who was the most famous person to visit my profile? It doesn't need to be a mutual, don't tag them, just say who it was.
1
1
1
@MohitSChauhan
Mohit Singh Chauhan
2 years
0
6
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
Do you remember when you joined X? I do! #MyXAnniversary
Tweet media one
0
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
RT @DudeWhoCode: Kudos to Indian govt employee for pushing hardcoded secrets to prod that too in client side. πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘.
0
342
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
RT @Iampatelajeet: Best way to revise most of the topics of DSA is, not by theory but by actual practice. Here're 16 patterns, around whic….
0
98
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
This meme got me πŸ˜‚πŸ˜‚
Tweet media one
0
0
3
@MohitSChauhan
Mohit Singh Chauhan
2 years
RT @farnamstreet: "I don't have talent, so I just get up earlier.". – Henry Rollins.
0
1K
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
RT @engineers_feed: Those photos of smiling students on the websites of engineering colleges is the biggest scam.
0
864
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
With just 8 quality posts on .I'm able to get 1000+ followers and 5000+ views. Long way to go :).#buildinpublic
Tweet media one
0
0
1
@MohitSChauhan
Mohit Singh Chauhan
2 years
"git checkout" Supremacy πŸ™‡
Tweet media one
0
0
1
@MohitSChauhan
Mohit Singh Chauhan
2 years
Answer is NO ❌, They aren't same. It's a historical bug in JavaScript. Now you are wonder why it isn't fixed?. Short Answer: Backward Compatibility (Don't Break the Web).In-depth Answer: It's a short blog :).
dev.to
As a beginner learning JavaScript, you may have come across some odd behaviors that seem confusing at...
0
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
Have you as a JavaScript Developer ever wonder . Why the type of null in JavaScript is Object β‰οΈπŸ€―.Is null really a Object ?. Hoping you're curious now :). (1/2)
Tweet media one
1
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
Want to STAND OUT, Try animated DP in your gmail πŸ“§. Not Rocket Science: Just make a gif with dimensions (360x360) and upload it to your google account pfp. You can use for animation. Connect for more such hacks!
0
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
To learn more, checkout this blog , All arrays methods in one place with detailed explanation and examples 😎.
dev.to
For many developers, arrays are the one data structure to rule them all. Arrays provide an intuitive...
0
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
Check conditions with .some() and .every() or find elements with .find(). So many options! . Join and split arrays with .join() and .split(). Slice out portions or splice in new elements. πŸ₯‘.
1
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
Iterate with .forEach() or get a new array with .map(). Filter with .filter() or reduce to a single value with .reduce(). πŸ’₯.
1
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
.unshift() and .shift() methods let you work with the beginning of the array instead. πŸ”€. const fruits = ['apple', 'banana'];. fruits.unshift('strawberry'); .// ['strawberry', 'apple', 'banana']. fruits.shift();.// 'strawberry' removed.
1
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
With .push() and .pop(), easily add and remove elements from the end of an array. πŸ‘Œ. const fruits = ['apple', 'banana'];. fruits.push('orange'); // ['apple', 'banana', 'orange']. fruits.pop(); // 'orange' removed.
1
0
0
@MohitSChauhan
Mohit Singh Chauhan
2 years
We have array methods like .map(), .filter(), and .reduce() that abstract away complex logic. Forget messy for loops! 😎.
1
0
0