ReactJS Course [3] - Ternary Operators, Lists in React, Css in React

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2025

ความคิดเห็น • 139

  • @vinaypatil8009
    @vinaypatil8009 2 ปีที่แล้ว +88

    Don't worry man
    Your course is perfectly on going just continue in this phase
    Medium length videos + exercises at end
    Awesome course
    You can add more important stuff at any time as per your experience in this series also , that could be great help for beginners like me
    Thanks brother for this Reactjs course

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +9

      Thank youu!!

    • @alexcruz8024
      @alexcruz8024 ปีที่แล้ว

      @@PedroTechnologies learning lots thank you!

    • @nk-hu7pt
      @nk-hu7pt 8 หลายเดือนก่อน

      @PedroTechnologies thank you!

  • @zoltanmolnar6956
    @zoltanmolnar6956 2 ปีที่แล้ว +17

    in my oppinion this playlist is standalone enough to be production-ready reactJS developer, very very good composition, thank you

  • @kelechiuroko6562
    @kelechiuroko6562 2 ปีที่แล้ว +5

    The exercises at the end of the videos standout for me. For someone like me who watch all through, it ensures i get to practice what i learned.. Nice work

  • @msfairyviolet
    @msfairyviolet 24 วันที่ผ่านมา +1

    Started your course yesterdag, after learning HTML, CSS and Javascript last year! To comment on your explanation on how you structured this: it's great! It is very clear what you should know beforehand, the videos are nice bite-sized, you can either break it up in smaller parts yourself, or watch a few back-to-back. Looking forward to learning more, but I'm already a happy beginner. Thanks so much! 😄

    • @PedroTechnologies
      @PedroTechnologies  22 วันที่ผ่านมา

      Best of luck! Glad you are liking it!!

  • @psydook
    @psydook 2 ปีที่แล้ว +4

    Thanks! Great video , also a very Happy Birthdayy !! Keep educating us!

  • @achuntps0913
    @achuntps0913 2 ปีที่แล้ว +1

    You know what! I love your videos so much and I even watch them again and again instead of using social media in my spare time! Thank you, Pedro!
    Your videos let me know how to use my CSS & JavaScript skills in React! I've always been confused about how to change the syntax in React. I love the way you described the syntax in 'JavaScript first' -> shows the result and tells us how to write it in React, that's useful and understandable.

  • @aabhasjain96
    @aabhasjain96 2 ปีที่แล้ว +16

    Thanks you so much Pedro, I promised myself that I'll watch every video of this series. Also Belated Happy Birthday 🎂 I hope that you had a very good time anyway and that you’ve got an amazing year to come. Lots of Love from INDIA ❤

  • @crimsoncrap
    @crimsoncrap ปีที่แล้ว

    Pedro I am a intermediate python developer coming with no experience in Javascript. That said your videos are concise enough that I am easily understanding the concepts and using very minimal googling to fill in the gaps.
    This course is the best I have found for React and your hard work in putting this together is very much appreciated.

  • @richardleungwoogabriel9317
    @richardleungwoogabriel9317 2 ปีที่แล้ว +5

    Pedro you are a BOSSSSSS!!! Thank you so much bro for everything you do!!, I'm starting to learn react now and i wish you can teach me everything. I learn so much through your style. Im changing careers from geologist and really need a mentor.

  • @notsurprised1537
    @notsurprised1537 ปีที่แล้ว +1

    Good job bro.
    Nice explanations and keeping it short is good.
    Not making every lesson over complicated. Awesome work

  • @pocketacademy6371
    @pocketacademy6371 ปีที่แล้ว

    I struggled a bit at the start, took almost 3 days, but now got through it! And I've to say, your teaching is amazing!

  • @i-001
    @i-001 2 ปีที่แล้ว +2

    Awesome! I'm learning so much as I'm following along! Thanks Pedro!

  • @verydifferentthought
    @verydifferentthought 2 ปีที่แล้ว +1

    Yesterday I found u through ur react hooks tutorial and found this playlist. Omg bro ur gold

  • @andalonds
    @andalonds 7 หลายเดือนก่อน

    People take an hour to explain this. Weird. This is not long especially if you do it at 1.5 times the speed. Time saver truly. Thank you for your great work

  • @_soet
    @_soet 2 ปีที่แล้ว +1

    Thank you Pedro for making my react journey a smooth one. It might interest you to know you're my mentor. Thanks for doing what you're doing .

  • @srikanthmedicherla3651
    @srikanthmedicherla3651 2 ปีที่แล้ว

    Your course is going amazing! Will be watching for every upload here on out!

  • @gabrieloliveira3194
    @gabrieloliveira3194 ปีที่แล้ว

    Pedro, your videos are amazing. I'm looking for a good tutorial/course on React to recommend to some friends who are learning javascript and after watching your videos I will 100% recommend your channel! I wish I had seen this video 1 year ago when I started with React. I wish you all the best,

  • @abahiduh3246
    @abahiduh3246 2 ปีที่แล้ว +1

    Thank u very Pedro, This course is amazing. I will definitely follow, share and support your channel.

  • @hurleywflow2227
    @hurleywflow2227 2 ปีที่แล้ว +2

    Thanks for your knowledge and the ways you are conveying make me alert so much. Good Day 🇦🇺

  • @dsouzaedson
    @dsouzaedson ปีที่แล้ว

    This was well explained. The exercise you give at the end of every video is truly helpful

  • @ahmednassar2536
    @ahmednassar2536 2 ปีที่แล้ว

    Very easy explanation, and it's a great way to deliver the message. Keep going, Pedro's

  • @adamwohlberg3104
    @adamwohlberg3104 11 หลายเดือนก่อน

    Fantastic course!!! Thank you so much for creating this and presenting it so well.
    The only feedback is that I wouldn't call A && B a ternary operator - I would call it a hack using "short-circuit" evaluation. I like that you present it though since I had to dig in and try to understand it and I will start to use it, but I think it is best to not refer to it as ternary which involves three parts by definition:
    The expression A && B works to return B due to the way logical AND (&&) operations are evaluated in JavaScript and other similar languages. This behavior is part of the logical operators' "short-circuit" evaluation.
    The expression A && B is not a ternary operation because it does not follow the ternary operator's structure and does not serve the same purpose. Here's how they differ:
    Structure:
    A ternary operation in JavaScript and similar languages is structured as condition ? exprIfTrue : exprIfFalse. It consists of three parts:
    This course is so helpful! That would be the only update I would make in future courses.

  • @aleksandarbursac4274
    @aleksandarbursac4274 9 หลายเดือนก่อน

    This is first course I listening on english, before this I was listened course on my native language and it was easy to understand. But I can't say this is hard, it's isn't! I understand you at almost everything man, and yeah, this course is helpful. I am new in react and I hope I will figure out this!

  • @RelaxingSounds-bl1dv
    @RelaxingSounds-bl1dv 2 ปีที่แล้ว

    Thank you for everything you do Pedro ! Just fixed so many mistakes I've made watching your videos.

  • @newtontimos7913
    @newtontimos7913 ปีที่แล้ว

    I love your teaching Pedro, you are the best of all ,you are so precise in your explanation

  • @albertkolanko9571
    @albertkolanko9571 2 ปีที่แล้ว

    Your course is extra, super and you give me your good vibe to coding in react - a lot of thanks :D

  • @sarahcalbez7104
    @sarahcalbez7104 2 ปีที่แล้ว +1

    I'm definitely binge watching this, maratonandoooo :D

  • @lancemclachlan8657
    @lancemclachlan8657 9 หลายเดือนก่อน

    Awesome video! I also found that you can use quick actions to move a function to a new file and it automatically adds the necessary import and export code

  • @ahmedabdi6941
    @ahmedabdi6941 11 หลายเดือนก่อน

    Exactly what I was looking for! Thanks Pedro!

  • @yassinechritt8816
    @yassinechritt8816 ปีที่แล้ว

    You truly are a great teacher

  • @krisfafrowicz7542
    @krisfafrowicz7542 2 ปีที่แล้ว

    You are doing great on these videos! Really am learning alot! Thanks!

  • @m.c.rodriguez28
    @m.c.rodriguez28 2 ปีที่แล้ว

    I believe the video length is great. Thanks for the content.

  • @navinkukreja1051
    @navinkukreja1051 2 ปีที่แล้ว

    You are Champ Man.. Keep going.. You are really doin good bro..

  • @NaveenTechzone
    @NaveenTechzone 2 ปีที่แล้ว +4

    Very good explanation

  • @brighteyo2603
    @brighteyo2603 ปีที่แล้ว +1

    Why do these variable names sound like kids from stranger things
    This course is very precise and straight to the point, easy to understand. Good job man

    • @PedroTechnologies
      @PedroTechnologies  ปีที่แล้ว +1

      I was watching season 4 of stranger things during this course lmaooo

    • @brighteyo2603
      @brighteyo2603 ปีที่แล้ว

      @@PedroTechnologies 😂 😂
      Cool!
      Whats the VS code theme extension you're using please?

  • @Salah-YT
    @Salah-YT 2 ปีที่แล้ว +2

    thank u so much bro ill go to next video bro well done

  • @dionardomarques18
    @dionardomarques18 2 ปีที่แล้ว +2

    Pedro, this way you are doing the videos it's awesome, make the learning more dynamic and with some exercises in the end will fix what we learned more easily. I have some question about the props, in the previous video you created the component inside the App.js file, but now you created a new file for the component and used the props it well. My question is about the usage of the props around the code, have some limitations or I can use in anywhere? Thanks a lot for the videos, you are a really good teacher :)

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +2

      Heyy, you can use props in ny component. Think of a component as like a javascript function. You can put it anywhere you want as long as you export it so you can access it in another file. Now think of a prop as like a normal argument that a function has. You can pass anything you want as a prop, like strings, numbers, functions, objects, even other components. There are no limitations in that sense!

    • @dionardomarques18
      @dionardomarques18 2 ปีที่แล้ว

      @@PedroTechnologies Ohhh okay, now is more clarify to me. Thanks for the explanation

  • @ayeshaawan-fq3on
    @ayeshaawan-fq3on 7 หลายเดือนก่อน

    finally i found a perfect course for me , Thankyou so much

  • @ntandajohn6820
    @ntandajohn6820 ปีที่แล้ว +1

    kudos pedro

  • @waleedsharif618
    @waleedsharif618 2 ปีที่แล้ว +1

    Awesome like always !

  • @abcq1
    @abcq1 2 ปีที่แล้ว +3

    Hello, Pedro) Thanks for your hard work doing this tutorials. Is it possible to ask you to clarify some specific topics about React? There are some that aren't covered well in variety of other tutorials

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว

      Yes!! What topics do u want?

    • @ИннаБогданова-к4щ
      @ИннаБогданова-к4щ 2 ปีที่แล้ว +2

      @@PedroTechnologies Pedro, salut))) THANK YOU A LOT! in next topics we can cover hooks one by one)

    • @abcq1
      @abcq1 2 ปีที่แล้ว

      ​ @PedroTech Hi, Pedro, and thanks for your response))
      Could you please talk in a bit deep details about optimization techniques available in React like useCallback and useMemo hooks. When to use them exactly, what is considered to be a "heavy calculation"? Is there any real reason to use class components in 2022?
      Is it ok to declare utility functions outside of the components?
      Could you make a separate deep tutorial on most common antipatterns we might use as React devs?
      Hope this list is somewhat ok))
      Thanks in advance)

  • @gabrieleravene
    @gabrieleravene 6 หลายเดือนก่อน

    i really like the way you teach. thank you!

  • @ranga3194
    @ranga3194 2 ปีที่แล้ว +2

    Happy birthday pedro♥️♥️♥️♥️

  • @dragosp.7635
    @dragosp.7635 2 ปีที่แล้ว +1

    Pedro, at 27:26 why don't we put planet.isGasPlanet in curly braces?? i can't understand why we must put {planet.name} but not {planet.isGasPlanet}

    • @ViswanathCodes9999
      @ViswanathCodes9999 ปีที่แล้ว

      planet.isGasPlanet is condition
      {planet.name} is object property

  • @luckytechpro9537
    @luckytechpro9537 2 ปีที่แล้ว

    Keep it up man!!

  • @k303k
    @k303k 2 ปีที่แล้ว

    Done! thanks a lot sir

  • @SusanWinters
    @SusanWinters 2 ปีที่แล้ว

    Cool! I didn't know you could conditionally set the colors this way: Company Name

  • @durgfestivalvibes
    @durgfestivalvibes ปีที่แล้ว

    Awesome videos man, thanks a lot ❤❤❤❤❤❤❤❤

  • @MarianaMoscu-t6i
    @MarianaMoscu-t6i ปีที่แล้ว

    Thanks you so much Pedro!

  • @dharmeshgohil9375
    @dharmeshgohil9375 2 ปีที่แล้ว +2

    awesome .......

  • @dginvestor6483
    @dginvestor6483 ปีที่แล้ว

    thanks sir for this course I learn a lot from you

  • @ayyapparock
    @ayyapparock 2 ปีที่แล้ว

    super explanation by breaking into parts

  • @programingwithabhi2631
    @programingwithabhi2631 2 ปีที่แล้ว

    Thank you bro for the Course ❤

  • @doppel33
    @doppel33 2 ปีที่แล้ว +1

    Pedro thank you for the amazing content! The discord link in the description is not working by the way.

  • @roman_k89
    @roman_k89 2 ปีที่แล้ว +1

    hi, do you plan to include in your course (after basics) some libraries, like Formik? thanks, you're doing a great job helping other people to get new skills and to improve their lives!

    • @aabhasjain96
      @aabhasjain96 2 ปีที่แล้ว +2

      Hey, watch the 1st video of this series, there at the start he has mentioned all the topics he is going to cover. Also Yes he is going to teach formik library as well.

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +2

      Yess!! I will teach some extra libraries including formik and YUP

    • @aabhasjain96
      @aabhasjain96 2 ปีที่แล้ว +1

      Hey Pedro, Please check my message on LinkedIn

  • @harijapandi
    @harijapandi ปีที่แล้ว

    Really awesome bruhhh....!

  • @yassiribrahim7521
    @yassiribrahim7521 2 ปีที่แล้ว +1

    Thanks PEDRO

  • @dev_mastery43
    @dev_mastery43 ปีที่แล้ว

    it is very hard to get like subscribe from me on youtube but your content force me to not leave without done that :) great effort

  • @bishalbhattarai9508
    @bishalbhattarai9508 2 ปีที่แล้ว +2

    Sir can you explain about class and functional component and also frontend design with react like creating real website with design

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +1

      Projects will come later on in the course! The difference between class and functional component is the syntax and methods used. Dont use class components, they are outdated and obsolete

    • @bishalbhattarai9508
      @bishalbhattarai9508 2 ปีที่แล้ว

      Thank you so much sir.

  • @giorgigegeshidze9180
    @giorgigegeshidze9180 2 ปีที่แล้ว

    Why we don't use the key attribute in ?

  • @souratirera3388
    @souratirera3388 ปีที่แล้ว

    Thank u so much...
    Much love

  • @PabloReviews
    @PabloReviews 2 ปีที่แล้ว

    Did you mentioned why do you separate the opening html tags and the text inside them with 1 space?
    Example
    instead of
    Example

  • @akhilac-sc3mz
    @akhilac-sc3mz ปีที่แล้ว

    Thanks for the videos , how to pass key values while we export component using props

  • @rogeclash2631
    @rogeclash2631 ปีที่แล้ว

    Amazing many thanks

  • @radimvlasak4157
    @radimvlasak4157 2 ปีที่แล้ว +1

    Thanks for tutorial, i have one question. Shouldnt we name the User component User.jsx instead of User.js when we work with jsx ? what is the difference between naming the files .js or .jsx ?

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +4

      Both works the same way. Later on in the course i will go over best practices, i personally prefer to name pure javascript files with .js and components with .jsx (i technically use typescript but i will teach typescript later on)

  • @poojakamble3643
    @poojakamble3643 2 ปีที่แล้ว +1

    episode 3 - conditional rendering
    import './App.css';
    function App() {
    const planets = [
    {name:"Mars" , isGasPlanet:false},
    {name:"Earth" , isGasPlanet:false},
    {name:"Jupiter" , isGasPlanet:true},
    {name:"Venus" , isGasPlanet:false},
    {name:"Neptune" , isGasPlanet:true},
    {name:"Uranus" , isGasPlanet:true},
    ]
    return (

    {planets.map((planet,key)=>{
    return {planet.isGasPlanet ? planet.name : null}
    })}

    );
    }
    export default App;

  • @wei7360
    @wei7360 ปีที่แล้ว

    hey pedro, very much thanks for the videos. I like your format and much easier to digest than other teachers. With that being said, I have a question in this episode:
    {{ color: isGreen ? "green" : "red" }}....
    How does JS know that "green" string is the green color? Is it already a defined variable in JS? Thanks

    • @leonardobalduzzi8613
      @leonardobalduzzi8613 ปีที่แล้ว

      Hi! In CSS there are actually predefined colors that you can use as strings (instead of HEX or RGB), you can just search online for "CSS valid color strings"

  • @saptarshibhattacharya2505
    @saptarshibhattacharya2505 2 ปีที่แล้ว

    just dont put the key attribute in your anonymous function for the same functionality. Otherwise prepending it with `_` is also fine. Therefore (name) => {return xyz} or (name,_key) => {return xyz} are both valid code which wont give any errors and are cleaner than adding useless html attribute too.

  • @limitless003
    @limitless003 2 ปีที่แล้ว +1

    Thanks bro

  • @dimasnytin
    @dimasnytin 2 ปีที่แล้ว

    Thanks you from your work

  • @dharansa3347
    @dharansa3347 2 ปีที่แล้ว +1

    Thanks much for awesome videos.. Can you upload videos every alternate day if possible

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว +1

      I will try my best! I couldnt this week because it was my birthday week. Starting next week I will post 3-4 times a week

    • @dharansa3347
      @dharansa3347 2 ปีที่แล้ว

      @@PedroTechnologies Thanks for the response. Belated happy birthday

  • @mehdibenzzine9746
    @mehdibenzzine9746 2 ปีที่แล้ว

    Thank you Pedro you're a beast...i have a question thou XD!
    how can we make that logic reusable (I'm talking about the last exercise) i tried to make it as a separate component but I failed! can you help with that !

  • @michaelnakis9594
    @michaelnakis9594 ปีที่แล้ว

    React bug maybe? Had a problem where no names was displaying when using "user" as the parameter ,only the ages were displaying. Changed "user " in the map section to "item" and started working

  • @404statuscode
    @404statuscode 2 ปีที่แล้ว

    I tried the import and use method for planets array as well. It worked but is it a good practice

  • @mahmoudrabbas
    @mahmoudrabbas 2 ปีที่แล้ว

    I think "component.module.css" is better than the normal way of "component.css", because the normal ruins the style if you use same class name in another component it will override it at all.

  • @xiangqiao1010
    @xiangqiao1010 ปีที่แล้ว +1

    const planets = [
    { name: 'Mars', isGasPlant: false },
    { name: 'Earth', isGasPlant: false },
    { name: 'Jupiter', isGasPlant: true },
    { name: 'Venus', isGasPlant: false },
    { name: 'Nepyune', isGasPlant: true },
    { name: 'Uranus', isGasPlant: true },
    ]

  • @srinathsri6975
    @srinathsri6975 ปีที่แล้ว

    nice pedro 😊😊👌👌👌👌👌👌

  • @nthiwafelix7967
    @nthiwafelix7967 ปีที่แล้ว

    The CSS modules ensures that your styles don't conflict especially in big projects.

  • @raphaelrocha313
    @raphaelrocha313 2 ปีที่แล้ว

    Hi Pedro! thanks for the video ! my answer was like this
    return (

    {planets.map((planet,key) => {
    return ;
    })}

    );
    did i overdo it ? was it a good way of using components ?

    • @leonardobalduzzi8613
      @leonardobalduzzi8613 ปีที่แล้ว

      Your solution also works, but it's not clean. You are rendering all the planets even the ones that are not gas planets, you are just hiding the name; and you are passing a div as the name which is not recommended.

  • @readbeforeyoureply64
    @readbeforeyoureply64 2 ปีที่แล้ว +1

    Hey man thanks for the course, my code works fine but console has these errors React errors, 24 of them how can i remove them?

    • @PedroTechnologies
      @PedroTechnologies  2 ปีที่แล้ว

      Can you paste the errors here?

    • @readbeforeyoureply64
      @readbeforeyoureply64 2 ปีที่แล้ว

      @@PedroTechnologies Thanks for responding i think when i played around the code i fixed it cause I can't find them anymore.

  • @newagecoder5417
    @newagecoder5417 2 ปีที่แล้ว

    Will this only make me beginner sir?

  • @brajagopalmukherjee1588
    @brajagopalmukherjee1588 2 ปีที่แล้ว

    Man can u make 1 hour long video if possible ,till today i completed all lectures,can u share more task ?

  • @ry902
    @ry902 2 ปีที่แล้ว

    hi Pedro amazing series . one issue i have is that react autocomplete is not working for my .js file like style or color .is there any solution for that . thanks again for this series .

  • @rakshapadiyar
    @rakshapadiyar 8 หลายเดือนก่อน

    import styles from './App.module.css', and implementing classname with styles as styles.name, I dont think this is working anymore...
    Also, what is it trying to import as "styles", there is nothing exported in the file './App.module.css'.

  • @АлександрГринёв-г5я
    @АлександрГринёв-г5я ปีที่แล้ว

    Why intellisense does not work when I typing styles?

  • @iambluewonk
    @iambluewonk 2 ปีที่แล้ว

    Just......thanks !

  • @vishwasgupta605
    @vishwasgupta605 2 ปีที่แล้ว

    can anyone please explain why we didn't use function with props in Planets exercise? can we not use conditionals statements within Planets element if used with props : return like this? in this statement somehow fit ternary operator.
    Help me out guys cant figure when to use props and when not to.

  • @VijayVijay-bi8mj
    @VijayVijay-bi8mj 2 ปีที่แล้ว +2

    ❤️

  • @bhuvanvarma7326
    @bhuvanvarma7326 2 ปีที่แล้ว

    in [eslint]
    src\App.js
    Parsing error: Invalid parenthesized assignment pattern.
    what is this error

  • @2ameridiem
    @2ameridiem ปีที่แล้ว

    i tried displaying the list by using forEach method but it does not render the names on my page.
    function App() {
    const names = ["john", "jessica", "mike", "dustin"];
    return (

    {names.forEach(function (name) {
    return {name};
    })}

    );
    }
    here is the code i wrote. can someone please explain why is this not working?

  • @VinciJeremy789
    @VinciJeremy789 8 หลายเดือนก่อน

    you are professor Oak for me...if I am Ash :D

  • @kyureikim6507
    @kyureikim6507 ปีที่แล้ว

    return (
    {planets.map((planet, key)=> {
    if (planet.isGasPlanet) return {planet.name};
    })}
    );
    it's not working in my own code for the exercise

    • @ViswanathCodes9999
      @ViswanathCodes9999 ปีที่แล้ว

      i think i am also facing same problem bro..

    • @leonardobalduzzi8613
      @leonardobalduzzi8613 ปีที่แล้ว

      @@ViswanathCodes9999 it's cause we are missing an "else" statement. here is the correct code: {planets.map((planet, key) => {
      if (planet.isGasPlanet) {
      return {planet.name};
      } else {
      return null; // or any other value you want to return for non-gas planets
      }
      })}

  • @washinerdev4355
    @washinerdev4355 ปีที่แล้ว

    Pedro are you Brasilian???

  • @augischadiegils.5109
    @augischadiegils.5109 2 ปีที่แล้ว

    ❤️❤️❤️

  • @abdessamade6995
    @abdessamade6995 2 ปีที่แล้ว

    😍😍😍😍

  • @vanditdubey
    @vanditdubey ปีที่แล้ว

    if I want to conditionally render user whose age is above for eg 21, how will we do that ? can somebody please tell me ?

    • @ViswanathCodes9999
      @ViswanathCodes9999 ปีที่แล้ว

      const age = 29;
      { age >= 21?Over age :Under age }
      output = Over age.

  • @bilal5488
    @bilal5488 2 ปีที่แล้ว +2

    ❤️🤭

  • @_saudi9
    @_saudi9 ปีที่แล้ว

    i see that components it replacing 1,000 lines of code with 1,000 file of code

  • @vivekanand5900
    @vivekanand5900 2 ปีที่แล้ว +1

    Stranger things character 😁

  • @ducouteausect3231
    @ducouteausect3231 ปีที่แล้ว +1

    const planets = [
    { name: "Mars", isGasPlanet: false },
    { name: "Earth", isGasPlanet: false },
    { name: "Jupiter", isGasPlanet: true },
    { name: "Venus", isGasPlanet: false },
    { name: "Neptune", isGasPlanet: true },
    { name: "Uranus", isGasPlanet: true },
    ];