Web development – Telegram
Web development
3.98K subscribers
410 photos
31 videos
80 files
87 links
Web development learning path

Frontend and backend resources.

HTML, CSS, JavaScript, React, APIs and project ideas.

Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
JavaScript Event Loop: The Truth About setTimeout(0)

The Real Order of Operations:

1. Call Stack: Synchronous code (A, D) - This is where JavaScript executes code sequentially, like reading a noscript.

2. Microtasks: Promises (C) - These are small tasks that need to be executed ASAP after the current noscript, before the next rendering. Think of them as urgent side tasks.

3. Macrotasks: Timeouts/Intervals (B) - These are longer tasks that the browser queues up to do whenever it gets a chance. They're not as urgent as microtasks.

Golden Rule: "0ms" doesn't mean immediate - it means "next event loop tick".
6
🧩 JavaScript Quiz

In JavaScript, what does the "NaN" stand for?
Anonymous Quiz
74%
Not A Number
4%
No Answer Needed
14%
Notation of Null
8%
Negative Absolute Number
👍3
Input Types in HTML
4👍1
CSS Breakpoints For Web Developers
4👍1
🧩 JavaScript Quiz

Which method is used to add an element to the end of an array?
Anonymous Quiz
72%
.push()
15%
.concat()
12%
.pop()
2%
.slice()
JavaScript Array Methods Visualised
4
What is the Output order for the above code?
Anonymous Quiz
45%
"Hello" → "World"
31%
"World" → "Hello"
13%
Only "Hello"
11%
Race condition
preventDefault() vs stopPropagation() vs stopImmediatePropagation()

When to Use What:

📌preventDefault(): When you want to handle the action yourself

📌 stopPropagation(): When parent elements shouldn't react

📌 stopImmediatePropagation(): Nuclear option for plugin conflicts

90% of the time, you only need preventDefault().
2👍1
3
1. CSS isn’t broken — your div just gave up on life.
Try: min-height: 100vh; 🚑

== is for loose relationships.
Use === if you want commitment. 💍

Want faster sites?
Replace PNGs with webp. Smaller, sharper, sexier. 📸


2. Centering in CSS used to be sorcery. 🧙‍♂️
Now it’s just:
display: grid;
place-items: center;


3. Bored of boring bullets?
Spice up your list with:
list-style-type: '🔥';


4.
z-index

not working?
Make sure the element isn’t a ghost.
position: relative;
6
ReactJS Project 🛠"

Your ultimate collection of hands-on React projects! From beginner-friendly calculators to advanced game development, practice your skills with real-world applications. Build your portfolio while mastering React concepts through practical coding challenges

.
1
React Developer Roadmap 🎯

Follow the proven path to React expertise! Our channel provides structured learning materials, practical examples, and real-world projects that take you from zero to full-stack React developer. Join our community of passionate developers building the future of web.
1