ReactJS Tutorial - 32 - React Hooks - useState Hook🔥

Поділитися
Вставка
  • Опубліковано 12 вер 2024
  • ReactJS Tutorial - 32 - React Hooks - useState Hook🔥
    1)React is an open source javascript library for building user interfaces.
    2)React is a project created and maintained by Facebook.
    React has more than a 100 thousand stars on GitHub and a huge community behind it.
    3)React has become increasingly popular among developers and is also one of the most sought out skill-sets by companies right now.
    4)React has a component based architecture. This lets you break down your application into small encapsulated parts which can then be composed to make more complex UI.
    5)React is declarative.
    6)React will make it painless for you to create complex UIs by abstracting away the difficult parts.
    7)React will handle efficiently updating and rendering just the right components in your application when your data changes.
    8)DOM updates which is one of the more expensive operations is handled gracefully in React.
    Family ❤
    Our Family - 125 ,000
    Like Aim - 2500
    Subscribers Aim- 200,000
    Subscribe to stay tuned to more fun and informative content, consider liking the video in order to vouch for quality 🤗!!
    Follow me on:
    Instagram: / sunejaajay
    Linkedin: / ajaysuneja
    ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
    ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
    ╠╗║╚╝║║╠╗║╚╣║║║║║═╣
    ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝
    Technical Suneja Shorts⭐
    ► www.youtube.co....
    ⭐ My Telegram Group Link:
    ► t.me/joinchat/...
    ⭐ What is CI/CD? 🤔
    ► ytube.io/3OqB
    ⭐ My Recent Project Experience | ReactJs, Gatsby framework (Front End Technologies ) 👩‍💻 🤔 Vlog27 ► ytube.io/3LsN
    ⭐ My Recent Interview Experience on Javascript
    ► ytube.io/3OqC
    ⭐ Vlog13:Support vs Development Jobs? Projects? What to choose | Coding होती भी है?🤔 | My Experience ► ytube.io/3Og8
    ⭐ Front End Interview Series (Modern JavaScript ES6 Tutorial by Technical Suneja )
    ► bit.ly/3CkjENa
    ⭐ Free Resouces
    1) Basic Javascript ► bityl.co/7XiW
    2) ES6 full course ►
    * Video: ytube.io/3JDb
    * Proper Documentation: bityl.co/7XnW
    3) Aao_Sikhe_Javascript (DS & Algorithms Course ) ► ytube.io/3JDZ
    3) Git and GitHub Training - Zero to Hero ►
    ytube.io/3JDa
    ytube.io/3OqD
    4) ReactJS Tutorial for Beginners to Advanced ►
    ytube.io/3JDc
    5) Angular Tutorial for Beginners ► ytube.io/3JDv
    5) Node.js and Express.js ► ytube.io/3JDd
    6) HTML & CSS Tutorial ► ytube.io/3JDt
    7) Final Project ► ytube.io/3JDe
    🔥 Instagram ► / sunejaajay
    ⭐ Want Webhosting service ?
    If you are planning to host your website in a very decent amount you can contact us on the given numbers.
    Contact Details :
    1. +91-9990131528
    2. +91-8529119425
    More Details (Visit our website ) ►hosting.techni...
    I believe that this vlog will help you to understand better in terms of career growth.
    Put your comments and share your experience with us if you like this vlog. Also if you have some suggestions then please suggest them in the comment box.
    ⭐ Support vs Development Jobs? Projects? What to choose
    ►ytube.io/3K5i
    ⭐ Off-Campus Job Placements Complete Roadmap ► ytube.io/3JpA
    ⭐ Latest IT Vlogs :
    ► ytube.io/3Ik9
    ⭐ Wednesday Episodes By Technical Suneja
    ► ytube.io/3FIN
    ⭐ Coding Stuff :
    ► / technicalsu. .
    ⭐ ReactJS Tutorial For Beginners. :
    ► ytube.io/3FIL
    ⭐ CTC v/s IN HAND SALARY | Huge Packages Explained🤔 GOOGLE, MICROSOFT, Facebook! 🔥
    ► ytube.io/3FIF
    ⭐ Top 5 Programming languages for 2021
    ► ytube.io/3FIH
    ⭐ Best Top 5 Frontend Frameworks of 2021 for Web Development
    ► ytube.io/3FII
    ⭐ 10 Generic steps to becoming Javascript Developer | Frontend & Backend Both🔥
    ► ytube.io/3FIJ
    ⭐ Best LinkedIn Tips for Job seekers in 2021 - Proper Utilisation of LinkedIn 🔥
    ► ytube.io/3FIK
    ⭐ My Thoughts on Web Development & Mobile App Development - Which is better?
    ► ytube.io/3FIS
    ⭐ Competitive Programming vs Software Development - Where Should I Invest My Time? 🔥
    ► ytube.io/3FIR
    ⭐ My Thoughts on Mean Stack Developer - Are you looking for a FullStack Developer?🔥
    ► ytube.io/3FIQ
    ⭐ My Thoughts on Full Stack Developer - Perfect Path 🔥🔥
    ► ytube.io/3FIP
    reactjs tutorial, reactjs tutorial for beginners, reactjs tutorial in hindi, reactjs projects, reactjs basics for beginners, reactjs tutorial in hindi technical suneja, reactjs technical suneja, react js by technical suneja, react js tutorial, react js code with harry, technical suneja web development, technical suneja react js, technical suneja react, react tutorial in hindi, react tutorial in hindi, react tutorial beginner to advanced, react tutorial hindi
    #reactjs #webDevelopment #technicalSuneja

КОМЕНТАРІ • 28

  • @TechnicalSuneja
    @TechnicalSuneja  4 роки тому +4

    Give this video a thumbs up if you liked it. Give this video a thumbs down if you disliked it. Your feedback will improve the quality of upcoming videos.

  • @tezaRu
    @tezaRu 2 роки тому +6

    I have added two buttons Increment as well as decrement . Here is the code
    import React, {useState} from "react";
    function HookCounter(){
    const[counter,setValue] = useState(1);
    const increment = () => {
    setValue(counter+1)
    }
    const decrement =()=>{
    setValue(counter-1)
    }
    return(
    counter using useState [Hooks]
    {counter}
    counter ++
    counterr --
    )
    }
    export default HookCounter;
    Thank you so much sir :) Keep uploading videos

  • @ayanansuman9602
    @ayanansuman9602 Рік тому

    Hello Suneja, I would like to give many thanks for explaining the concepts in very detail. Please keep the type of research and good work and share the knowledge.

  • @sahil_more7306
    @sahil_more7306 3 роки тому

    hahaha jab aapne kaha website pe attack ho raha he tab accha laga lol
    me web security me tha web pentesting bug bounty karta tha but some reason ab coding sikh raha bhai aapse and bohot accha lag raha he .
    thanks for this all awosm series

  • @getknowledgebite3413
    @getknowledgebite3413 2 роки тому

    super...content amazing explanation and example so easy

  • @vikassaxena16
    @vikassaxena16 2 роки тому

    its really good.....you are the best

  • @ajaywadhwa3398
    @ajaywadhwa3398 2 роки тому

    Simply Awesome bro. !!!

  • @HarpreetKaur-kb2fr
    @HarpreetKaur-kb2fr Рік тому

    thanks sir

  • @nikitakadam29
    @nikitakadam29 Рік тому

    Amazing 👏🤩

  • @chotu5706
    @chotu5706 2 роки тому

    amazing brother🎉🎉🎉🎉

  • @arifhussain5276
    @arifhussain5276 4 роки тому

    thanks for this reactjs series

  • @FreezingTech
    @FreezingTech Рік тому

    thanks bhai or new content uplode karo react k

  • @CoderSingh
    @CoderSingh 5 місяців тому

    Hi Sir, Thanks for the video. When I am doing the homework code and using third method you explained to use the hooks, it's working fine. But when I try to do it by using 1st and 2nd method, it's not working properly. Can you please help me with that. Thanks

  • @thecoderraj3777
    @thecoderraj3777 3 роки тому

    Thanks sir :)

  • @deepbarankar2852
    @deepbarankar2852 3 роки тому

    Sir aap kon konsa VS code extensions use karte ho? Please bata do.

  • @stiphenrobert4469
    @stiphenrobert4469 4 роки тому

    Sir.. Toh fir kya class component future me use nehin honge... Functional component se sab kuch ho sakta hai woh v easy se.. Class component me jyada code likhna padta hai

  • @trending_video1991
    @trending_video1991 4 роки тому +1

    yes,I have done task

  • @skcoding1357
    @skcoding1357 2 роки тому

    yes but need practice

  • @shivamrai1322
    @shivamrai1322 4 роки тому

    Sir aapse yah puchna tha yah basic se hai puri series

  • @getknowledgebite3413
    @getknowledgebite3413 2 роки тому

    sir hmne fucntion component m export kyu nhi kia ??

    • @nikhil_somani
      @nikhil_somani 2 роки тому

      Export function ke sath hi likha hai then not required at last.

  • @bhargav1534
    @bhargav1534 4 роки тому

    I am not learning I watch for your view

  • @rababportfolio3022
    @rababportfolio3022 3 роки тому

    I can see some warning in console, it bothers

  • @naumaanshaikh3139
    @naumaanshaikh3139 Рік тому

    COUNTER APP kabhi banaya sir????
    kaunsa video hai??????????????

  • @parmarhitendrasinh4504
    @parmarhitendrasinh4504 4 роки тому +3

    mern stack insta clone

  • @omkar8689
    @omkar8689 3 роки тому +1

    sir, voice is not good as compared to previous videos.