Skip to content

Commit 2d09806

Browse files
committed
updated
1 parent 3ef015f commit 2d09806

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

ReactJS/Interview/100_React_Question/2.Basics-2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ React provides reusability and composition through its `component-based architec
9696
## Q9. What are State, Stateless, Stateful and State Management terms?
9797

9898
* `state` refers to the current state of the component.
99-
* `Stateful` or `state management` refers to, when a user performs some actions on the UI, then the Reat application should be able to **update andre-render that data or state** on the UI.
99+
* `Stateful` or `state management` refers to, when a user performs some actions on the UI, then the React application should be able to **update and re-render that data or state** on the UI.
100100

101101
```javascript
102102
import React from 'react';

ReactJS/Interview/100_React_Question/3.Files_Folder.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## Q1. What is NPM? What is the role of node_modules folder? `V. IMP.`
44

5-
NPM (Node Package Manaher) is ised to manage the `dependencies` for your React project. including the `React library` itself.
5+
NPM (Node Package Manaher) is used to manage the `dependencies` for your React project. including the `React library` itself.
66

77
## Q2. What is the role of public folder in React?
88

9-
Public folder contains `static assets` that are served directly to the user's browser, such as images, fonts andthe index.html file.
9+
Public folder contains `static assets` that are served `directly` to the user's browser, such as `images, fonts and the index.html` file.
1010

1111
## Q3. What is the role of src folder in React?
1212

@@ -89,6 +89,11 @@ src folder is used to `store all the source code` of the application which is t
8989

9090
* However, it is recommended to keep them same for easier to organize and understand your code.
9191

92+
<hr>
93+
94+
[Previous](./2.Basics-2.md): React Basic II <br>
95+
[Next](./4.JSX.md): JSX
96+
9297
<!---
9398
Adarsh
9499
28th July 2024

ReactJS/Interview/100_React_Question/4.JSX.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
## Q3. What is Babel?
2424

25-
`Babel` in React is used to trabspile JSX syntax into reglar JavaScript which browser can understand.
25+
`Babel` in React is used to transpile JSX syntax into reglar JavaScript which browser can understand.
2626

2727
## Q4. What is the role of Fragment in JSX? `V. IMP.`
2828

@@ -51,6 +51,7 @@ const props = {name: 'Hello', noun: 'World'};
5151
return(
5252
<>
5353
<ChildComponent {...props}>
54+
{/*<ChildComponent {props}> ❌*/}
5455
</>
5556
)
5657
```
@@ -111,16 +112,20 @@ function MyComponent() {
111112

112113
```javascript
113114
function App() {
114-
const numbers = [1,2,3,4,5];
115+
const numbers = [1, 2, 3, 4, 5];
115116

116117
return (
117118
<>
118119
{
119-
number.map((number)=>(number * 2))
120+
numbers.map((number) => (
121+
<div key={number}>{number * 2}</div>
122+
))
123+
// 2 4 6 8 10
120124
}
121125
</>
122126
);
123127
}
128+
124129
```
125130

126131
> A callback function is a function passed as an argument to another function, which is then invoked within the outer function to complete a specific task.
@@ -147,6 +152,11 @@ function App() {
147152

148153
* However, this is not recommended since JSX is tightly integrated with React and relies on many React-specific features.
149154

155+
<hr>
156+
157+
[Previous](./3.Files_Folder.md): File and Folder <br>
158+
[Next](./5.Components_Functional.md): Components (Function & Class)
159+
150160
<!---
151161
Adarsh
152162
28th July 2024

ReactJS/Interview/100_React_Question/5.Components_Functional.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Types of Components:
3232

3333
* Functional components are declared as **Javascript function**
3434

35-
* They are `stateless components`, but with the help of hoooks, they can now manage state also.
35+
* They are `stateless components`, but with the help of hooks, they can now manage state also.
3636

3737
**Class based Components**
3838

@@ -72,7 +72,7 @@ Data is passed down through each component.
7272
function PropParent() {
7373
return (
7474
<div>
75-
<PropChild message={'data'} />
75+
<PropChild message={"data"} />
7676
</div>
7777
);
7878
}

0 commit comments

Comments
 (0)