Shubham Bankar

23 posts

Shubham Bankar

Shubham Bankar

@BankarVaibhs

🚀 Software Engineer | Full-Stack Dev 💻 C/C++, JS/TS, React, Node.js, FastAPI ⚡ Building QuoteBox 📜 | Habit Tracking App 📊 🎯 Problem-Solver | AI & Automatio

Yavatmal Maharashtra Katılım Ekim 2024
16 Takip Edilen1 Takipçiler
WebDeveloperMentor
WebDeveloperMentor@MentorWebDev·
📢 HTML Quiz What is the correct syntax to link an external CSS file? A) <style src="style.css"> B) <link rel="stylesheet" href="style.css"> C) <css>style.css</css> D) <stylesheet>style.css</stylesheet>
English
77
8
111
8.8K
Ritika Agrawal
Ritika Agrawal@RitikaAgrawal08·
📝 HTML Quiz Which attribute prevents an input from being edited but still submits its value? A) disabled B) required C) hidden D) readonly
English
16
0
28
1.9K
SumitM
SumitM@SumitM_X·
Which React pattern is this ? // Timer.js function Timer({ children }) { const [seconds, setSeconds] = React.useState(0); React.useEffect(() => { const id = setInterval(() => setSeconds((s) => s + 1), 1000); return () => clearInterval(id); }, []); return children(seconds); } {(s) =>
Seconds: {s}
}
And what could be a better modern approach than this pattern?
English
10
5
74
13K
Nitesh Singh
Nitesh Singh@nitesh_singh5·
Role - Software Engineer - Intern Stipend - 35k-50k per month Experience - 0+ years - JavaScript, React - Opportunity to work in a fast growing organisation Let us know if you are Interested 👇
English
355
16
336
33.7K
WebDeveloperMentor
WebDeveloperMentor@MentorWebDev·
What does CSS stand for? A) Computer Style Sheets B) Cascading Style Sheets C) Creative Style Syntax D) Colorful Style Sheets
English
80
2
99
7K
kartik singh
kartik singh@kartik_singhhh·
Hey @X I’m looking to #CONNECT with people interested in React DSA Full Stack Development Frontend and Backend Java Python DevOps AI ML Data Science LeetCode Freelancing Startups Software Development Let’s grow together share learn and build in public #letsconnect #BuildInPublic
English
103
2
85
3.3K
Shubham Bankar
Shubham Bankar@BankarVaibhs·
Post 1 (Concept-based – very engaging) 🚀 React.js Question What is the main purpose of useEffect in React? 🔘 Managing side effects 🔘 Creating components 🔘 Updating state 🔘 Handling events #ReactJS #WebDevelopment #Frontend #JavaScript
English
0
0
0
16
Python Developer
Python Developer@PythonDvz·
🤔🚀 Comment your answers below! 👇
Python Developer tweet media
English
38
8
109
12.7K
Zafar Ai
Zafar Ai@AiwithZafar·
Find the missing number?
Zafar Ai tweet media
English
286
100
177
5.8K
WebDeveloperMentor
WebDeveloperMentor@MentorWebDev·
Which HTML element is used for the largest heading? A) <h5> B) <h1> C) <header> D) <head>
English
117
8
261
29.1K
Shubham Bankar
Shubham Bankar@BankarVaibhs·
@SumitM_X Key should be unique as list can change means it can update/delete list item then it cause re-rendering issues as key is not unique
English
0
0
0
42
SumitM
SumitM@SumitM_X·
Common React Interview question. What is the problem in this code ? export default function App() { const items = ["Apple", "Bat", "Cat"]; return ( <ul> {items.map((item, index) => ( <li key={index}>{item}</li> ))} </ul> ); }
English
106
22
502
414.4K