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
CSS Cheat Sheet
6
PHP CHEATSHEET
2👏2
CORS request path
2👍2🥰1
Var Vs let Vs const
3
HTTP Status Codes
3👍1
Cookies Vs Sessions
3👍1
REST API Cheatsheet
3
🧩 JavaScript Quiz

In JavaScript, which keyword is used to declare a variable that cannot be reassigned after its initial value is set?
Anonymous Quiz
14%
let
6%
immutable
69%
const
11%
var
Components of Docker
👍21
localStorage Persistence: The Silent Bank Vault

What’s happening?

localStorage is like a browser’s hard drive. It survives tab/window closures, even system reboots.

Unlike sessionStorage (which dies with the tab), localStorage sticks until explicitly cleared (localStorage.clear() or user clears browsing data).

Gotcha: It’s synchronous meaning it blocks the main thread if you store large data.
2👍1
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