Skip to content

Commit a50cdb2

Browse files
committed
Add JSX and react data flow questions
1 parent 26aa302 commit a50cdb2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,8 @@
324324
|308| [How do you access imperative API of web components?](#how-do-you-access-imperative-api-of-web-components)|
325325
|309| [What is formik?](#what-is-formik)|
326326
|310| [What are typical middleware choices for handling asynchronous calls in Redux?](#what-are-typical-middleware-choices-for-handling-asynchronous-calls-in-redux)|
327+
|311| [Is browsers understand JSX code?](#is-browsers-understand-jsx-code)|
328+
|312| [Describe about data flow in react?](#describe-about-data-flow-in-react)|
327329

328330
## Core React
329331

@@ -5109,3 +5111,7 @@
51095111
51105112
310. ### What are typical middleware choices for handling asynchronous calls in Redux?
51115113
Some of the popular middleware choices for handling asynchronous calls in Redux eco system are `Redux Thunk, Redux Promise, Redux Saga`.
5114+
311. ### Is browsers understand JSX code?
5115+
No, browsers can't understand JSX code. You need a transpiler to convert your JSX to regular Javascript that browsers can understand. The most widely used transpiler right now is Babel.
5116+
312. ### Describe about data flow in react?
5117+
React implements one-way reactive data flow using props which reduce boilerplate and is easier to understand than traditional two-way data binding.

0 commit comments

Comments
 (0)