Shadab Profile picture
Software development & products building. Looking for full-time opportunities Built @tweetflick_app(acq) @peekletters(failed) @fabpic_app @billsplitapp
Sep 26, 2021 β€’ 12 tweets β€’ 4 min read
ReactJS Interview (QnA) Thread 🧡

πŸ‘‰ Part - 70

#reactjs #interview 1. Is it ref argument available for all functions or class components?

Regular function or class components don’t receive the ref argument, and ref is not available in props either. The second ref argument only exists when you define a component with React.forwardRef call.
Sep 25, 2021 β€’ 8 tweets β€’ 2 min read
Best Github repositories for web developers:

πŸ§΅πŸ‘‡πŸ» 1. Node.js Best Practices
Node.js best practices list (August 2021) github.com/goldbergyoni/n…
Sep 25, 2021 β€’ 10 tweets β€’ 4 min read
8 Awesome articles resources to understand new, Constructors, instanceof and Instances.

A Thread πŸ§΅πŸ‘‡ πŸ“œ JavaScript For Beginners: the β€˜new’ operator β€” Brandon Morelli

codeburst.io/javascript-for…
Sep 25, 2021 β€’ 11 tweets β€’ 4 min read
ReactJS Interview (QnA) Thread 🧡

πŸ‘‰ Part - 69

#reactjs #interview 1. What is a consumer?

A Consumer is a React component that subscribes to context changes. It requires a function as a child which receives current context value as argument and returns a react node.
Sep 24, 2021 β€’ 6 tweets β€’ 3 min read
Do you want to stand out in a job interview? Learn Git.

Git is an essential tool for developers. Every team is using some kind of version control system and Git is the most commonly used.

I collected for you a few tools to help you learn Git.

A Thread πŸ§΅πŸ‘‡ 1. Git and Git-flow cheat sheet.

Link: github.com/arslanbilal/gi…
Sep 24, 2021 β€’ 10 tweets β€’ 3 min read
10 Awesome articles Resources to understand this, call , apply and bind

A Thread πŸ§΅πŸ‘‡ Image πŸ“œ Grokking call(), apply() and bind() methods in JavaScript β€” Aniket Kudale
levelup.gitconnected.com/grokking-call-…
Sep 24, 2021 β€’ 8 tweets β€’ 3 min read
ReactJS Interview (QnA) Thread 🧡

πŸ‘‰ Part - 68

#reactjs #interview Image 1 . What is the purpose of default value in context?
The defaultValue argument is only used when a component does not have a matching Provider above it in the tree. This can be helpful for testing components in isolation without wrapping them.
Sep 23, 2021 β€’ 5 tweets β€’ 3 min read
Learn by building projects.

These resources will help you.

🧡 1. projectlearn.io
Author: @NilarjunDas

Here you can learn:

⧩ ML & Artificial Intelligence
⧩ Web Development
⧩ Mobile Development
⧩ Game Development
Sep 23, 2021 β€’ 5 tweets β€’ 2 min read
3 Awesome Video Resources to understand Factories and Classes

A Thread πŸ§΅πŸ‘‡ Image πŸŽ₯ JavaScript Factory Functions β€” Programming with Mosh