Hi Guys, I am new to this programming language and i have the basic of HTML & CSS. Currently i am learning about javascript and reactjs because i have an assessment of creating a movie app using reactjs and API. My concern is right now that im scared that i won’t be able to do the assessment. Can someone guide for me to understand better about it? #react #javascript #movieapp #programming #webdeveloper
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (3)
React is based on 3 simple concepts:
JSX is an extension to JS that allows you to write
React.h('div', null, 'text')
as<div>text</div>
inside your JSX code. Both create a virtual DOM object that can be reconciled with the actual DOM.Memoization is a technique by which you cache results of a function until certain properties change. This is used for handling side effects through
useEffect
anduseLayoutEffect
and costy calculations withuseMemo
anduseCallback
and state withuseState
anduseRef
.When you mount a react component with
ReactDOM.mount(<Component />, document.body)
, the first render cycle (mount phase) is started; all hooks are memoized and the initial DOM fragment is constructed insidedocument.body
, directly followed by the layout phase in whichuseLayoutEffect
side effects are applied. Whenever a property in the render tree changes, a new virtual DOM is constructed in the render phase, reconciled, then comes the layout phase again - until the unmount phase.Even though Alex is right about these main concepts, a good thing about React is that you don't need to know all this in detail when you start learning.
There are many good ways to get started with React. Make sure to look into the official docs & tutorial as they are well done IMO. Also make sure to look into Create React App. That said there are so many resources out there for any level of experience. You really just have to search for them.
You can do it!
Well answered!
A counter and todo app will attract an audience and sell but no one cares to teach these fundamentals first. And we all know who suffers the most!