Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosAndroid Police: Samsung is smashing records! #shorts #tech #phones(21.09.2026 um 13:55 Uhr)
YouTube Security Videosheise & c't: Bundesnetzagentur wollte diesen Futterautomaten verbieten(21.09.2026 um 13:53 Uhr)
YouTube Security VideosNeil Patel: Your Google Traffic Isn't An Asset It's A Loan #shorts(21.09.2026 um 14:05 Uhr)
Windows Tipps & SecurityF-14 A Tomcat Top Gun endlich als Revell Klemmbausteinmodell erhältlich(21.09.2026 um 14:27 Uhr)
Sichere ProgrammierungShow the Hand-Back Sample Before Approving an Agent Score(21.09.2026 um 14:15 Uhr)
Sichere ProgrammierungHybrid retrieval in one Postgres query: RRF over tsvector + pgvector(21.09.2026 um 14:15 Uhr)
YouTube Security VideosAndroid Police: Samsung is smashing records! #shorts #tech #phones(21.09.2026 um 13:55 Uhr)
YouTube Security Videosheise & c't: Bundesnetzagentur wollte diesen Futterautomaten verbieten(21.09.2026 um 13:53 Uhr)
YouTube Security VideosNeil Patel: Your Google Traffic Isn't An Asset It's A Loan #shorts(21.09.2026 um 14:05 Uhr)
Windows Tipps & SecurityF-14 A Tomcat Top Gun endlich als Revell Klemmbausteinmodell erhältlich(21.09.2026 um 14:27 Uhr)
Sichere ProgrammierungShow the Hand-Back Sample Before Approving an Agent Score(21.09.2026 um 14:15 Uhr)
Sichere ProgrammierungHybrid retrieval in one Postgres query: RRF over tsvector + pgvector(21.09.2026 um 14:15 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

My React Journey: Day 25

Hooks - useState and useEffect What Are React Hooks? Hooks are special functions introduced in React v16.8 that allow functional components to use React features like state and lifecycle methods without writing class components. 1.…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




Hooks - useState and useEffect



What Are React Hooks?

Hooks are special functions introduced in React v16.8 that allow functional components to use React features like state and lifecycle methods without writing class components.



1. useState Hook

The useState hook is used to add state to functional components.

It provides:




  • A state variable to store data.

  • A setter function to update the state.
    Syntax:



const [state, setState] = useState(initialValue);





Example:




import React, { useState } from 'react';

export default function MyComponent() {
const [name, setName] = useState("Guest");
const [age, setAge] = useState(0);

const updateName = () => setName("Damilare");
const updateAge = () => setAge(age + 2);

return (
<div>
<p>Name: {name}</p>
<button onClick={updateName}>Update Name</button>

<p>Age: {age}</p>
<button onClick={updateAge}>Increase Age</button>
</div>
);
}






2. useEffect Hook

The useEffect hook allows you to perform side effects in functional components. Examples include:




  • Fetching data from an API.

  • Subscribing to events.

  • Directly updating the DOM (e.g., changing document.title).
    Syntax:



useEffect(callback, [dependencies]);






  • callback: The function to execute.

  • [dependencies]: Array of values that the effect depends on.



Behavior Based on Dependencies:




  1. useEffect(() => { ... });
    Runs after every re-render of the component.

  2. useEffect(() => { ... }, []);
    Runs only on mount (like componentDidMount).

  3. useEffect(() => { ... }, [value]);
    Runs on mount and whenever value changes.



Example:




import React, { useEffect, useState } from 'react';

export default function UseEffectHook() {
const [count, setCount] = useState(0);
const [color, setColor] = useState("green");

// Runs on mount and whenever count or color changes
useEffect(() => {
document.title = `Count: ${count} - Color: ${color}`;
}, [count, color]);

const incrementCount = () => setCount(count + 1);
const decrementCount = () => setCount(count - 1);
const toggleColor = () => setColor(color === "green" ? "red" : "green");

return (
<>
<p style={{ color }}>{`Count: ${count}`}</p>
<button onClick={incrementCount}>Add</button>
<button onClick={decrementCount}>Subtract</button>
<button onClick={toggleColor}>Change Color</button>
</>
);
}






Use Cases of useEffect:




  1. Event Listeners: Add/remove listeners (e.g., window.addEventListener).

  2. Fetching Data: Fetch API data when a component mounts or state changes.

  3. DOM Updates: Update document.title or other DOM properties.

  4. Cleanups: Handle cleanup tasks like unsubscribing from listeners.



Cleanup Example:




useEffect(() => {
const timer = setInterval(() => console.log('Running...'), 1000);

return () => {
clearInterval(timer); // Cleanup on unmount
};
}, []);






Key Points:




  • State in Functional Components: Use useState for state variables.

  • Side Effects: Use useEffect for anything that interacts with the outside world or reacts to changes in state/props.

  • Dependency Array: Always specify the dependency array to avoid unnecessary renders or infinite loops.

  • Cleanups: Always clean up subscriptions, intervals, or listeners in useEffect.
    With useState and useEffect, building React applications becomes easier and more intuitive.



Day after day.

Understanding upon understanding.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten My React Journey: Day 25

Thematisch verwandte Begriffe: React, Journey · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94097 | A vulnerability was determined in Netcore NBR200V2 1.3.241127.071246. Th…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick