Done thanks 21:30 react jsx allows you to use JavaScript inside your “html” like a templating language. Expressions inside { } are evaluated as JavaScript code. 22:50 can conditionally render HTML components in jsx by placing them in curly braces to be evaluated as js Props passes to components through html attributes in jsx. The component catches the props object in its function definition (using functional components as class bases components are deprecated) Managing state variables with the usestate hook which returns a tuple, the variable that represents state item and a setter method. The setter method MUST be used to change the value of the state variable in order for react components to see the change You apply css files by importing them on top of your react component useEffect hook allows you to trigger a callback when a state variable changes (must be changed with the state setter given by useState). You can give useEffect array of dependencies (state variables), if empty array then useEffect triggered when the component loads only
Thank you so much for this awesome tutorial which is very different from many of those on TH-cam, easy to follow and very detailed. For people who are watching this video after the release of react 18, you'll need to replace : import ReactDOM from 'react-dom' (line 2 at 43:55) by import React ReactDOM from 'react-dom/client' and ReactDOM.render(, document.getElementById('root')) (line 6 at 43:55) by ReactDOM.createRoot(document.getElementById('root')).render()
@@dragun246 it's not the code it's the API link, when you put your email into the movie site they should of sent you a confirmation email that has the right link in it
I'm in a code camp at the moment and half-way through the video I can already say: The way you point out certain basic principles and good practices seem (1) very logical and undestandable to me. And (2) you explain it in a more structured way than my teachers at codecamp. Thanks for taking the time to explain this in detail.
I'm a seasoned backend and cloud engineer, and I've never really cut my teeth on front end development before. This guide was fantastic at filling in some of the gaps I had after an initial read of the React documentation. Thanks!
import ReactDOM from 'react-dom/client'; const container = document.getElementById('root); const root = ReactDOM.createRoot(container) root.render(); pretty sure this is a super recent update on the ReactDOM
This tutorial is the best I've come across. Finally a lecturer who explains basic stuff in detail for dummies like me! 😂 Makes learning coding a lot easier for sure!
This was the best tutorial I've tried so far. I made it all the way to the end without giving up AND I was even using a mock api from json file I create for video games instead of movies as I was learning minimal API at the same time and everything worked out great! Thanks a lot for this.
I never realized how helpful the actual visualization of the concepts would be. Thank you for that. It definitely improves the learning experience for a lot of us, and it's far better than just hearing someone talk.
After building this simple, half-hour movie application, imagine what a long and comprehensive 20-hour Next.js course would look like! Check it out now - jsmastery.pro/next13
JSM has always been the best. of all the amazing react video tutorials on this channel, this formal course is the one that has been lacking to connect the dots... am super excited
I did struggle a lot to learn React. Wasted a lot of time. The problem? I did not know the basics of Javascript in first place. You need to walk before you can run. So I took a few very basic books (books, not complex tutorials!) and learned the fundamentals. After I learned the basics of Javascript, learning React became much easier. Edit: For those asking about the books, for the very basics I learned with "Javascript In Less than 50 Pages". And to develop my knowledge I learned with "Head First Javacript Programming".
Having worked with React some time ago, I recently found myself in need of a refresher to jog my memory on its core concepts and best practices. This video served as the perfect recap, succinctly summarizing all the essential knowledge I had gathered over time. It's impressive how it managed to cover both the basics and some nuanced details, making it invaluable for both beginners and those looking to revisit React after a break. Thank you for creating such a comprehensive and insightful resource. It's clear a lot of effort went into making this content accessible and engaging, and it certainly paid off. Great work! 👏👏👏
God bless you. I got it to work for me. The major issue I had was that: my react version was 18.0 but yours was 17.2. Version 18.0 does not support React-dom render(), which is now a legacy root API. For those that may encounter a similar problem, The new root API uses createRoot.. This is the code I used: import * as ReactDOMClient from 'react-dom/client'; import App from './App'; const container = document.getElementById('root'); const root = ReactDOMClient.createRoot(container); root.render();
It work in version 18, there is an instruction he gave on how to do from view, click on terminal press control c, y enter and rerun npm. Please go through the tut incase I miss the steps.
@@balogunolajide7204 it wont work in React 18. if u follow his code it will also work work but as react 17. so sunday solution is welcome. the instruction he gave was pertaining to node and the dependencies /modues which can occur if the local host is not properly started or the project u are coding is not in the right file path.
Thanks a lot! Hands down the best ReactJS tutorial and course on TH-cam. Better than 99% of courses available on TH-cam. If you are contemplating on watching this video, look no further, this is the golden nugget! So well structured and simply explained everything. We need more teachers like you. CWH's course was 1/10 your ReactJS course is 9/10
Adrian, you are the only one teacher on TH-cam I like most. You talk less and talk to the specific point. I learnt JS from your JS Mastery Course. It will be completed very soon. I know you are a busy person, but I would like to request you, please make tutorials on backend (Node and Express Js) or launch course like JS. Thanks for this awesome bit-sized react js refresher video. This is why I like you, my Great Teacher. ❤️
2 years later and this tutorial is still valid! I used the latest version of react so, my Index.js looked different... But everything else in the tutorial worked like a charm! I also had an issue with my search, when I searched a new movie it would reset back to the useEffect() setting of the batman... but i quickly realised that it was cause i never gave it and empty array lol. Anyways great video! Just downloaded the roadmap now!
I haven't developed an app from the ground up in a few years when I was training at my first job out of college. I have a coding interview later this week and this really helped shake the rust off. Thank you!
Thanks for the tutorial, BTW to move multiple lines of code to the right, select the lines & press tab, & to move lines of code to the left, select the lines & press shift+tab.
Btw If you are curious as me; ReactDOM.render usage deprecated at React v18 api. Now you can't call the ReactDOM without instantiated. You need to use ReactDOM.CreateRoot to initialize it to an constant variable.
If this guy can teach other frameworks like Django, Spring boot , Laravel, this could be the best Programming university in the world! Thanks for your content.
@Andrain, When I started to watch your tutorial, immediately after 5mins I hit 'Subscribe'😂 Your teaching style and content delivery is simply superb!! When you created a single card with just one raw movie data, it made more sense to understand components, props, reusability, so on,.. very effectively!! In fact when I started, I was very sleepy! But once I started, I didn't stop until I finished the App!! Thanks a lot ❤❤❤
This is an excellent FIRST tutorial on React JS for beginners. I highly recommend going through this one before moving on to any other tutorial. ⭐⭐⭐⭐⭐⭐⭐
@@panomapet9441 I didn't accept any offers as my mum is currently hospitalized and I'm the only one to take care of her right now. I will start applying for jobs after march end in the meantime I'm working on my dsa and side projects. I recently made a MERN app from Traversy Media( just to refresh some concepts). if you are looking for a job opportunity, I recommend you follow this channel's roadmap and work on portfolio /dsa along with tweeting your progress on Twitter. I got tons of offers within 10 days of applying for jobs.
I've fallen in love with React just by the way you described your processes at each step! I truly enjoyed this Fantastic video, I have learned so much. You have a terrific way of explaining this in a simpler way. Thank You greatly for this!
Thank you for posting this JavaScript Mastery! I completed this tutorial, tonight. Super helpful. I have three comments, one for the author, and two for the audience. For the Author: My favorite part Is at 1:08:09. I could not understand why you used setService. I paused it there, JUST before you corrected it, in-video. For everyone else: At 47:36, line 3, the API_URL, dont forget the forward slash "/" between the "com" and the question mark "?". "com/?" took me bit to realize it haha. Lastly, At 50:38, when first getting the array list in the console, I received an error because I am on version 18 of react (at the time of this comment) and react changed the way they handle render. How to fix: Just click the link in the console, and follow the documentation. You will have to manipulate the index.js file mine looked like this: import React from 'react'; import ReactDom from 'react-dom' ; import { createRoot} from 'react-dom/client'; import App from './App'; const container = document.getElementById('root'); const root =createRoot(container); root.render(); It worked for me, so I hope that helps :)
This is great! The first video about learning React I see, and it was great. I watched JS, CSS, HTML5 and Angular courses in a spanish channel, this is the first time I watch a course in english, and I loved it, your pronunciation is great as well as the speed, is easy to understand even for someone whose first lang isn't english
I went through the whole tutorial and made the movie app. Coming from knowing nothing about React, now I made something in it. I didn't even had it installed, this is literally the first thing I did. Thanks!
Okay, I just finished this video and can I just say this is sooo freakin' good. I mean I have been breaking my head on react since so long now, and this was the best tutorial. God bless you ! I am so proud I came across this video
I just did this project and it works amazing. Thank you Adrian for making so many great tutorials. Also, the pace and sound of your voice make me confident while doing the tutorials. Keep doing this great job!🎖🏆🏅🔥👍💯
I was in a confused circle to know the React and work with your projects and was wishing you have a crash course in it and her we go(I didn't watch it yet) but I'm sure if we'll be the masterpiece I need... Thanks a lot my friend, you are a very good teacher :D update: I'm so proud that I watch this crash course, I'm more confident now to work with react, you make it too easy, I will for sure be waiting for the course :) thanks a lot bro
I just started learning React and you don´t have any idea how useful this video was to me! Great pace and explanation Andrian. Finally, I started to wrap my mind around React. Thank you so much man!
Review : This javascript is awesome. Harry sir has covered all the topics with proper notes. The most important thing about this course is...In this course , you will find many interesting exercises that will boost your javascript knowledge. Big Thanks To Harry Bhai😇
this would be a great tutorial if it wasn't for all the constant pluging. i'm at 9:40 and you've plugged the guide 3 times already, the course twice, skillshare once, and another one of your videos once. I GET IT. love u
You are a Great Teacher! I struggled for months to understand some concept in React but i just had 1 hour with you and everything seems exciting and refreshing
This channel is an absolute goldmine! The way you explain everything is so clear and easy to understand! Thank you so much for spreading your knowledge with us
I love the way you provide everything in the code short video with bundle of stuff and nothing missed So enjoyed a lot ,gonna watch and practice the whole react course you provided Thanks once again😍😍
I started with some other react tutorial on youtube. it ws a lot confusing. then I come to this video. This is perfect explanation. thank you for this nice documentation!
Thank you, Andrian. I think this is the best React tutorial for beginners! I have a question at 1:03:51. Why would you write "movies?.length" instead of "movies.length" ?
It's so that if movies are undefined you won't get an error trying to access length of undefined variable, in case movies are undefined movies?.length will return undefined instead of an error
Wow, this tutorial was exactly what I needed! 🚀 You managed to cover so much in just one hour, and the explanations were super clear. Building an app while learning React makes everything more practical and engaging. Thank you for putting this together-definitely going to recommend this to anyone looking to get started with React!
Been using Vue for the last 5years but thanks to this very one video, I'm moving to react on my project rewrite. Thank you very much for the great tutorial.
Wow, fabulous course, wonderful explanation, excellent pace. Thanks Adrian for providing this high quality course, Learned enough React for just 1 hour of video!!
Hello, I am a React.js developer and must say this is the simplest video I ever saw. but many things left and if you can cover that in any video that will be great. like:- All Hooks, router, redux, middleware, and also in details about the state, props, props drilling and many more which help people to compete in interviews Thank You...
Thank you so much for this beautiful react course. The way you explained it is unmatched, went straight to the point keeping me glued to my phone for an hour. 😊
QUICK ALERT: I'm following the tutorial in may, 30 of 2022. And the comand "ReactDOM.render(, document.getElementById('root'));" in the "index.js" file is no longer supported. I had to do: const root = ReactDOM.createRoot(document.getElementById('root')); root.render(
Done thanks
21:30 react jsx allows you to use JavaScript inside your “html” like a templating language. Expressions inside { } are evaluated as JavaScript code.
22:50 can conditionally render HTML components in jsx by placing them in curly braces to be evaluated as js
Props passes to components through html attributes in jsx. The component catches the props object in its function definition (using functional components as class bases components are deprecated)
Managing state variables with the usestate hook which returns a tuple, the variable that represents state item and a setter method. The setter method MUST be used to change the value of the state variable in order for react components to see the change
You apply css files by importing them on top of your react component
useEffect hook allows you to trigger a callback when a state variable changes (must be changed with the state setter given by useState). You can give useEffect array of dependencies (state variables), if empty array then useEffect triggered when the component loads only
'person' is assigned a value but never used no-unused-vars
Hi I am getting the above error can some one guide me
@@sportgossips capitalize P in person
Thank you so much for this awesome tutorial which is very different from many of those on TH-cam, easy to follow and very detailed. For people who are watching this video after the release of react 18, you'll need to replace : import ReactDOM from 'react-dom' (line 2 at 43:55) by import React ReactDOM from 'react-dom/client' and ReactDOM.render(, document.getElementById('root')) (line 6 at 43:55) by ReactDOM.createRoot(document.getElementById('root')).render()
@linoxsama I did what you said, but still app not working. It shows "No movies found".
@@dragun246 I tried it with the link he said to use but that didn't work, what you have to do is use the request link that was emailed to you
@@Hammish can you tell me the code?
@@dragun246 it's not the code it's the API link, when you put your email into the movie site they should of sent you a confirmation email that has the right link in it
@@Hammish hey same issue with me as well.. it's showing that cannot fetch data
I'm in a code camp at the moment and half-way through the video I can already say: The way you point out certain basic principles and good practices seem (1) very logical and undestandable to me. And (2) you explain it in a more structured way than my teachers at codecamp. Thanks for taking the time to explain this in detail.
I'm a seasoned backend and cloud engineer, and I've never really cut my teeth on front end development before. This guide was fantastic at filling in some of the gaps I had after an initial read of the React documentation. Thanks!
Thank you, Andrian. This is absolutely my first react project and the first time I got to understand the concepts. You are a great teacher.
wait u are an olatunji like ksi and deji???
'person' is assigned a value but never used no-unused-vars
Hi I am getting the above error can some one guide me
@@aminedev_07 fuckin hell, you are right
@@sonianarendramodi2605 idefk why did i comment that, moving on...
import ReactDOM from 'react-dom/client';
const container = document.getElementById('root);
const root = ReactDOM.createRoot(container)
root.render();
pretty sure this is a super recent update on the ReactDOM
This tutorial is the best I've come across. Finally a lecturer who explains basic stuff in detail for dummies like me! 😂 Makes learning coding a lot easier for sure!
I think we share the same problem😂
This was the best tutorial I've tried so far. I made it all the way to the end without giving up AND I was even using a mock api from json file I create for video games instead of movies as I was learning minimal API at the same time and everything worked out great! Thanks a lot for this.
I never realized how helpful the actual visualization of the concepts would be. Thank you for that. It definitely improves the learning experience for a lot of us, and it's far better than just hearing someone talk.
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
do u get that css file
After building this simple, half-hour movie application, imagine what a long and comprehensive 20-hour Next.js course would look like! Check it out now - jsmastery.pro/next13
My IDE compiles the html tags in javascript incorrectly, do you know why?
you forgot to specify the key!!!!
please,how much will i pay in naira to get the course,am waiting
く
Thank you so much for this! It got me rolling faster than any other tutorial. Psssst. it's pronounced "Ad Jay Scent" with soft C
JSM has always been the best. of all the amazing react video tutorials on this channel, this formal course is the one that has been lacking to connect the dots... am super excited
Thank you! 👌
I have watched several tutorials on youtube. I learn from tutorials, but you're a GREAT TUTOR! You made it look so simple. You're good. Simply good.
I did struggle a lot to learn React. Wasted a lot of time.
The problem? I did not know the basics of Javascript in first place. You need to walk before you can run.
So I took a few very basic books (books, not complex tutorials!) and learned the fundamentals.
After I learned the basics of Javascript, learning React became much easier.
Edit: For those asking about the books, for the very basics I learned with "Javascript In Less than 50 Pages".
And to develop my knowledge I learned with "Head First Javacript Programming".
Hello, did you need also HTML and CSS knowledge or not?
I see you everywhere.
You do@@kuzeygorgulu
@@obby-ji1xq yeah same, I think it's a bot that promotes those books.
Having worked with React some time ago, I recently found myself in need of a refresher to jog my memory on its core concepts and best practices. This video served as the perfect recap, succinctly summarizing all the essential knowledge I had gathered over time. It's impressive how it managed to cover both the basics and some nuanced details, making it invaluable for both beginners and those looking to revisit React after a break. Thank you for creating such a comprehensive and insightful resource. It's clear a lot of effort went into making this content accessible and engaging, and it certainly paid off. Great work! 👏👏👏
God bless you. I got it to work for me.
The major issue I had was that: my react version was 18.0 but yours was 17.2. Version 18.0 does not support React-dom render(), which is now a legacy root API.
For those that may encounter a similar problem, The new root API uses createRoot.. This is the code I used:
import * as ReactDOMClient from 'react-dom/client';
import App from './App';
const container = document.getElementById('root');
const root = ReactDOMClient.createRoot(container);
root.render();
It work in version 18, there is an instruction he gave on how to do from view, click on terminal press control c, y enter and rerun npm. Please go through the tut incase I miss the steps.
@@balogunolajide7204 it wont work in React 18. if u follow his code it will also work work but as react 17. so sunday solution is welcome. the instruction he gave was pertaining to node and the dependencies /modues which can occur if the local host is not properly started or the project u are coding is not in the right file path.
is it working?
Any other issues you encountered other than this one ?
The voice of this person is so calm like i really hear this just for Being relaxed 😎
Same
Yesss
😂😂
❤ great 👌
Thanks a lot! Hands down the best ReactJS tutorial and course on TH-cam. Better than 99% of courses available on TH-cam. If you are contemplating on watching this video, look no further, this is the golden nugget! So well structured and simply explained everything. We need more teachers like you. CWH's course was 1/10 your ReactJS course is 9/10
where did you get the css code? the link doesnt seem to work
As someone struggling to get my head around React, this is by far the best tutorial I've found anywhere online. Well done.
Adrian, you are the only one teacher on TH-cam I like most. You talk less and talk to the specific point. I learnt JS from your JS Mastery Course. It will be completed very soon.
I know you are a busy person, but I would like to request you, please make tutorials on backend (Node and Express Js) or launch course like JS.
Thanks for this awesome bit-sized react js refresher video. This is why I like you, my Great Teacher. ❤️
Thank you for the kind words, I appreciate it! ❤
@@javascriptmastery Love from heart Sir. ❤️
Where can I find that course for J's
2 years later and this tutorial is still valid! I used the latest version of react so, my Index.js looked different... But everything else in the tutorial worked like a charm!
I also had an issue with my search, when I searched a new movie it would reset back to the useEffect() setting of the batman... but i quickly realised that it was cause i never gave it and empty array lol. Anyways great video! Just downloaded the roadmap now!
Clearly the best intro tutorial out there. Thanks for such good content.
I haven't developed an app from the ground up in a few years when I was training at my first job out of college. I have a coding interview later this week and this really helped shake the rust off. Thank you!
Thanks for the tutorial, BTW to move multiple lines of code to the right, select the lines & press tab, & to move lines of code to the left, select the lines & press shift+tab.
Good teaching. Well prepared and organized (lots of folks keep rambling on, wasting people's time). Wholeheartedly subscribing.
My Confidence level up after watching every video your channel
👆 👆
Pls I'm more comfortable using classes and constructor in react can still use it or should just go with the destructing method @@javascriptmastery
Btw If you are curious as me; ReactDOM.render usage deprecated at React v18 api. Now you can't call the ReactDOM without instantiated. You need to use ReactDOM.CreateRoot to initialize it to an constant variable.
If this guy can teach other frameworks like Django, Spring boot , Laravel, this could be the best Programming university in the world! Thanks for your content.
@Andrain, When I started to watch your tutorial, immediately after 5mins I hit 'Subscribe'😂 Your teaching style and content delivery is simply superb!! When you created a single card with just one raw movie data, it made more sense to understand components, props, reusability, so on,.. very effectively!! In fact when I started, I was very sleepy! But once I started, I didn't stop until I finished the App!!
Thanks a lot ❤❤❤
This is an excellent FIRST tutorial on React JS for beginners. I highly recommend going through this one before moving on to any other tutorial. ⭐⭐⭐⭐⭐⭐⭐
Even though I have done react from udemy. I can tell you for sure this is by far the best react crash course video on TH-cam. Thank you Adrian
Thank you!!
which course did you take in Udemy?
@@panomapet9441 react full guide by maximillan academind. It's 50 hr course .
@@keshavakumar9828 ok. It takes much time. I believe you can now build some projects or you got some jobs
@@panomapet9441 I didn't accept any offers as my mum is currently hospitalized and I'm the only one to take care of her right now. I will start applying for jobs after march end in the meantime I'm working on my dsa and side projects. I recently made a MERN app from Traversy Media( just to refresh some concepts). if you are looking for a job opportunity, I recommend you follow this channel's roadmap and work on portfolio /dsa along with tweeting your progress on Twitter. I got tons of offers within 10 days of applying for jobs.
I am from PAKISTAN....
THANK YOU SO MUCH........
FINALLY I MADE MY FIRST REACT PROJECT WITHIN 2 DAYS
......
AGAIN THANKS........
Thanks Javascript mastery for your hard work..... Need small project on angular.... Thanks in advance.
I've fallen in love with React just by the way you described your processes at each step! I truly enjoyed this Fantastic video, I have learned so much. You have a terrific way of explaining this in a simpler way. Thank You greatly for this!
Man with a word....really appreciate it thank you mate
Thank you! 😊
Thank you for posting this JavaScript Mastery!
I completed this tutorial, tonight. Super helpful.
I have three comments, one for the author, and two for the audience.
For the Author:
My favorite part Is at 1:08:09. I could not understand why you used setService. I paused it there, JUST before you corrected it, in-video.
For everyone else:
At 47:36, line 3, the API_URL, dont forget the forward slash "/" between the "com" and the question mark "?".
"com/?"
took me bit to realize it haha.
Lastly, At 50:38, when first getting the array list in the console, I received an error because I am on version 18 of react (at the time of this comment) and react changed the way they handle render.
How to fix: Just click the link in the console, and follow the documentation. You will have to manipulate the index.js file
mine looked like this:
import React from 'react';
import ReactDom from 'react-dom' ;
import { createRoot} from 'react-dom/client';
import App from './App';
const container = document.getElementById('root');
const root =createRoot(container);
root.render();
It worked for me, so I hope that helps :)
I love your coding room. Each day I must visit Instagram just to see your well arranged computers and all blueish color
I'm glad to hear that!
This is great! The first video about learning React I see, and it was great. I watched JS, CSS, HTML5 and Angular courses in a spanish channel, this is the first time I watch a course in english, and I loved it, your pronunciation is great as well as the speed, is easy to understand even for someone whose first lang isn't english
I went through the whole tutorial and made the movie app. Coming from knowing nothing about React, now I made something in it. I didn't even had it installed, this is literally the first thing I did. Thanks!
Okay, I just finished this video and can I just say this is sooo freakin' good. I mean I have been breaking my head on react since so long now, and this was the best tutorial. God bless you ! I am so proud I came across this video
I just did this project and it works amazing. Thank you Adrian for making so many great tutorials. Also, the pace and sound of your voice make me confident while doing the tutorials. Keep doing this great job!🎖🏆🏅🔥👍💯
Unlike others, you would explain the stuff. Thank you!
I was in a confused circle to know the React and work with your projects and was wishing you have a crash course in it and her we go(I didn't watch it yet) but I'm sure if we'll be the masterpiece I need... Thanks a lot my friend, you are a very good teacher :D
update:
I'm so proud that I watch this crash course, I'm more confident now to work with react, you make it too easy, I will for sure be waiting for the course :) thanks a lot bro
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
I just started learning React and you don´t have any idea how useful this video was to me! Great pace and explanation Andrian. Finally, I started to wrap my mind around React. Thank you so much man!
Eagerly waiting for it... Thank you sooo much Adrain❤
It's here! 😊
awesome Adrian! I did the project and I added one more feature to the app:
View the Detail of one specific Movie with React Router Dom 6.2.2
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
Review : This javascript is awesome. Harry sir has covered all the topics with proper notes. The most important thing about this course is...In this course , you will find many interesting exercises that will boost your javascript knowledge.
Big Thanks To Harry Bhai😇
this would be a great tutorial if it wasn't for all the constant pluging. i'm at 9:40 and you've plugged the guide 3 times already, the course twice, skillshare once, and another one of your videos once. I GET IT. love u
React Master... always having some crazy contents. Sir, I'm just speechless. Thank you
You are a Great Teacher! I struggled for months to understand some concept in React but i just had 1 hour with you and everything seems exciting and refreshing
I cant tell you how much grateful we are, for this content you make deserves a lot more attention and a lot more love, Thank you very much
Thank you! ❤️
@@javascriptmastery can you please do more courses on react.js for noob like me please i would really appreciate it sir.
So far I have NEVER seen a tutorial this great for a beginner. Thanks Javascript Mastery for your amazing work🥳
Following you from the days of 5k subscribers, one thing is still the same that is "YOUR UNIQUE WAY OF TEACHING HARD CONCEPTS SO EASILY"
Hat's off🙌🙌
Thank you so much, it really means a lot!!! ❤️
This is by far the best ReactJS course on TH-cam right now, and I've seen a lot
Thanks!
Thanks!
We want another one like this ....!!
Plz 🔥🔥🔥🔥🔥🔥🔥
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
Well done mate. Even as someone that's worked with React for a couple years, this was a solid review.
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
This channel is an absolute goldmine! The way you explain everything is so clear and easy to understand! Thank you so much for spreading your knowledge with us
I am on my journey to be a software developer, and this course is crazy good!! Thanks and I love everything in this video.
Excellent video by all standards. Lessons are on point. Thanks, Adrian for sharing.
Thank you! More to come! 😊
Just finished this project! My first React App! Thanks Aiden!
is it for complete beginners? cos I just did HTML, CSS and JS
You should learn full react , the way you learnt js. Then watch this video as a revision. It would be a better approach, if u ask me.
Great crash course, Adrian! Long time dev but (mostly) new to React, this was a perfect intro for me to kickstart my knowledge. Thanks!
Adrian thank you for your content ♥️. I hope you will get into mobile app development with React Native.
Yess, soon!! ❤️
@@javascriptmastery Flutter is better! 🙏
Precise, timely and on point , you just got yourself a subscriber for life and this is my first react project. 👏👏👏
That was a great class ever... love it
Very nice presentation. I am totally new to everything except Javascript. Yet, this presentation was easy to follow and understand and replicate.
I love the way you provide everything in the code short video with bundle of stuff and nothing missed So enjoyed a lot ,gonna watch and practice the whole react course you provided Thanks once again😍😍
I started with some other react tutorial on youtube. it ws a lot confusing. then I come to this video. This is perfect explanation. thank you for this nice documentation!
Thank you, Andrian. I think this is the best React tutorial for beginners!
I have a question at 1:03:51. Why would you write "movies?.length" instead of "movies.length" ?
It's so that if movies are undefined you won't get an error trying to access length of undefined variable, in case movies are undefined movies?.length will return undefined instead of an error
@@LoliburtaToJa I see, thanks for your help!
Wow, this tutorial was exactly what I needed! 🚀 You managed to cover so much in just one hour, and the explanations were super clear. Building an app while learning React makes everything more practical and engaging. Thank you for putting this together-definitely going to recommend this to anyone looking to get started with React!
Thankyou so much dude, this is amazing 🔥🎉️
Glad you like it!
Thank you So much. So amazingly explained with an awesome project.😊😊
The gift that keeps on giving, thanks Adrian
❤️
I'm a full stack developer student and you are helping me so much. Thank you for your support and videos.
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
You always delivers what we need 🙌 thanks bro 😀
Yes! 😊
Been using Vue for the last 5years but thanks to this very one video, I'm moving to react on my project rewrite. Thank you very much for the great tutorial.
Your way of teaching is so concise and clean. Great job.
Wow, fabulous course, wonderful explanation, excellent pace. Thanks Adrian for providing this high quality course, Learned enough React for just 1 hour of video!!
Excellent video again.
Thank you!
Yahoo!!! My First React App is here. JSM really build confident in me for React JS.
TYSM. Such a precious Course
Thanks for this great crash course, but I would really love if you could also make a crash course on JavaScript as well...
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
Just finished it.. so good easy to learn and understand !! keep up the good work !!
Awesome as usual 🔥
Thanks! Fite
@@javascriptmastery You are most welcome. Because of your awesome videos I learned react very quickly.
as a marketer, happy to learn more about the programming world! Thank you for the knowledge you've shared!
Awesome video 👍👍
Thank you 👍
Hello, I am a React.js developer and must say this is the simplest video I ever saw. but many things left and if you can cover that in any video that will be great. like:- All Hooks, router, redux, middleware, and also in details about the state, props, props drilling and many more which help people to compete in interviews
Thank You...
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
This video is great, a quick refresher
Yes, exactly!
Thank you for the great content 🙏
Glad you like it!
This is the best react crash course i have ever done. You are the real Master of React. Thank you so much. I love it.
👆👆☝️Thanks for views and comment you can participate in the current investment offer.
Great 👏🏻👏🏻👏🏻
Thanks! 👏
Thank you, Sir.
This is my first React project
Thank you so much for this beautiful react course. The way you explained it is unmatched, went straight to the point keeping me glued to my phone for an hour. 😊
bro wym he talked for 13 minutes before getting to the point
@@MyBinaryLife Would like to see you do better
watching it on 2024, for revision, and now-a-days we use vite ;), btw you're course is in detail and superb
You explain things very well - I really appreciate that you explain how and why things work. Awesome video!
Thank you! 😊
This is exactly what I needed to understand DeFi better!
QUICK ALERT:
I'm following the tutorial in may, 30 of 2022. And the comand "ReactDOM.render(, document.getElementById('root'));" in the "index.js" file is no longer supported.
I had to do:
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
instead.
It's really great. I've never seen such a good tutorial before. I'm still trying to learn. Thank you so much and respect!!
Share some course which includes Payments, or a full MERN Stack project.
Might come soon! 🔜
For those who want to get back to React , this is an amazing revision
I watched several react tutorials but this one was the best one so far