react

0.0(0)
studied byStudied by 0 people
0.0(0)
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/3

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:22 AM on 9/3/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

4 Terms

1
New cards

What is ReactJS?

ReactJS is an open-source JavaScript library used for building user interfaces, especially single-page applications. It allows developers to create reusable UI components.

2
New cards

What is a React Component?

A React Component is an independent, reusable piece of UI. Components can be class-based or function-based and accept inputs (props) and manage their own state.

3
New cards

What is JSX?

JSX (JavaScript XML) is a syntax extension for JavaScript that allows you to write HTML-like code within your JavaScript files. It is compiled down to React.createElement() calls.

4
New cards

What is 'State' in React?

In React, 'State' is an object that holds data or information about the component. It is mutable and can change over time, triggering a re-render of the component and its children.