#1 REACT JS INTRO, REACT JS COURSE 2023

6 Pack Programmer
11 May 202215:45

Summary

TLDRThis video script covers a range of topics, including the process of setting up a React application and the technical steps involved. It delves into the installation of Node.js, creating React apps, and managing various files within the project. The presenter also explains the basics of JSX, JavaScript imports, and how to use functional components in React. There's a focus on simplifying code and project structures, with tips on removing unnecessary files, managing app states, and optimizing the development process for efficiency. The content targets developers seeking practical guidance in building modern web applications.

Takeaways

  • 🎬 The video discusses the use of Node.js and React.js in building web applications.
  • 📦 Node.js must be installed first, either by searching on Google or using terminal commands.
  • 💻 The speaker demonstrates how to create a React app using the 'npx create-react-app' command.
  • 📝 The app structure includes an HTML file and JavaScript files that help manage components and app behavior.
  • 📂 The speaker explains how to clean up unnecessary files from the default React setup to streamline the project.
  • 🔧 There's an emphasis on the importance of understanding the basic structure of React components and how they work.
  • ⚙️ The video covers using the 'npm start' command to run the app and view it in a browser.
  • 🖥️ A detailed breakdown is provided on how to import and manage components within a React app.
  • 🚀 The speaker touches on optimizing the app by removing redundant code and focusing only on essential components.
  • 🌐 The use of functional components in React is highlighted as an efficient way to handle state and props.

Q & A

  • What is the primary focus of the video script?

    -The script primarily focuses on using Node.js to create and manage web applications, specifically setting up a React app and explaining various steps involved in building it.

  • What does the speaker mean by 'single-page application' in the script?

    -A 'single-page application' refers to a web application or website that interacts with the user by dynamically rewriting the current page rather than loading entire new pages from the server. This improves user experience by making the app faster and more responsive.

  • What tools or technologies are mentioned for building web applications?

    -The speaker mentions Node.js, npm, React, and VS Code as tools used for building and managing web applications in the script.

  • What is the purpose of using 'npx create-react-app'?

    -The command 'npx create-react-app' is used to create a new React application with a predefined structure. It simplifies the process of setting up a React environment by automatically configuring the necessary files and dependencies.

  • Why does the speaker recommend deleting unnecessary files from the React app?

    -The speaker recommends deleting unnecessary files like CSS and certain JavaScript files to clean up the project and remove unused or redundant code, making it easier to manage and customize the app.

  • What is the significance of the 'index.html' file in a React application?

    -The 'index.html' file is the main HTML file that gets loaded when the React application runs. It contains a 'root' div where the entire React app is rendered, acting as the entry point for the application.

  • What role does the 'App.js' file play in a React project?

    -The 'App.js' file is the main component of a React project. It is where the primary content and components of the application are imported and displayed, forming the core structure of the React app.

  • How does the speaker describe handling global dependencies for React projects?

    -The speaker explains that while global dependencies can be installed, they prefer using local dependencies by running commands like 'npx create-react-app' to avoid managing global installations, which can be more complex.

  • What does the speaker suggest about learning React and functional components?

    -The speaker suggests that functional components in React are more efficient and user-friendly, especially with recent updates, making them a better choice over class components.

  • What is the 'createRoot' method used for in React?

    -The 'createRoot' method is used to initialize the root of a React app. It ensures that the React components are properly rendered inside the 'root' element of the HTML file.

Outlines

00:00

📺 Overview of Bigg Boss and Website Setup

The paragraph opens by discussing a variety of topics, ranging from the popular TV show Bigg Boss to website development. It highlights the requests for Bigg Boss discussions and shifts to technical aspects of website creation. The creator explains the need for specific tools like Node.js, frameworks, and setting up a single-page website. The paragraph provides instructions for dealing with overloaded pages, setting up a server, and working with YouTube integration for website promotion. The author also mentions different tasks that one must handle when setting up a website, including dealing with different data sets and processes.

05:02

🖥️ Technical Setup for a React App

This paragraph details the technical process of setting up a React app using tools like npm, npx, and React frameworks. It guides the reader through installing Node.js, creating and managing an app with npm, and using React commands. The author discusses the step-by-step approach to managing files within the application, editing files for customization, and preparing the system for app deployment. There's also emphasis on global and local installations and handling updates as well as script management.

10:04

🔧 Understanding React App Structure

The third paragraph dives deep into the React app’s structure. It explains how React files such as `index.js` and `App.js` work together to render components in the browser. The author emphasizes the importance of understanding the core components in the app, like the root and DOM elements. Additionally, it discusses how JavaScript interacts with HTML through React, focusing on dynamically rendering content and adjusting web elements in real time. The process of writing basic HTML within React is demonstrated, helping to visualize the app’s front end.

15:04

🔄 Functional Components and React Features

The final paragraph focuses on the evolution of functional components in React, highlighting how modern React development incorporates these features for more efficient coding. It briefly mentions the changes and enhancements introduced in React, particularly the use of hooks and state management. The paragraph sets up a teaser for the next video that will dive deeper into React's state and feature updates, concluding with the promise of more advanced content and functionality in future lessons.

Mindmap

Keywords

💡Bigg Boss

Bigg Boss is a popular reality TV show in India where contestants are locked inside a house and must complete tasks while being recorded 24/7. In the context of the script, the speaker mentions that there have been multiple requests to talk about Bigg Boss, which suggests its relevance and popularity among the audience.

💡Node.js

Node.js is a server-side platform built on Google Chrome's JavaScript Engine (V8 Engine) that allows developers to build scalable applications. The speaker in the script talks about the installation process of Node.js and how it’s used in developing applications, making it a central tool for the video’s theme of coding and application building.

💡React App

A React App refers to an application built using React, a JavaScript library for building user interfaces. In the video, the speaker explains how to set up a React App using commands like 'npx create-react-app' and how it is utilized for web development, thus forming a core part of the video’s instructional theme.

💡npx

NPX is a package runner tool that comes with NPM (Node Package Manager) and is used to execute Node packages. In the script, 'npx' is discussed in the context of creating a React App, where the speaker explains how it helps to run commands without installing the package globally, making it essential for quick project setups.

💡Components

Components are reusable building blocks in React that encapsulate functionality and UI. The script refers to 'function components' and 'class components,' showing how they are used to structure a React app. Components are integral to React’s architecture, making them crucial for understanding how to build scalable web applications.

💡VS Code

VS Code, or Visual Studio Code, is a source-code editor developed by Microsoft, widely used by developers. The speaker instructs how to open and edit files using VS Code, particularly mentioning its use for writing and running code, which is vital to the video’s coding tutorial aspect.

💡HTML

HTML (HyperText Markup Language) is the standard markup language for documents designed to be displayed in a web browser. In the script, HTML is referenced when the speaker discusses editing files like 'index.html,' which is the main file that loads in the browser. This highlights HTML’s role in web development, especially in React applications.

💡JavaScript

JavaScript is a high-level, interpreted programming language used primarily for web development. The script mentions enabling JavaScript to run a React app, underlining its essential role in building dynamic and interactive user interfaces. JavaScript is at the heart of both Node.js and React, making it central to the video’s coding tutorial.

💡Render

Rendering in React refers to how the application’s components are displayed in the browser. The script explains how the 'render' method takes components like 'App' and inserts them into the DOM (Document Object Model), which is key to understanding how a React app updates and displays content in real-time.

💡Package Manager

A package manager is a tool that automates the process of installing, upgrading, configuring, and removing software dependencies. In the script, the use of NPM (Node Package Manager) is discussed for managing React dependencies, emphasizing how it simplifies the development process by handling external libraries and modules.

Highlights

Introduction to Node.js installation and usage.

Explanation of how to create a React app using the 'npx create-react-app' command.

Discussion about how to edit and delete unnecessary files in a React project.

Detailed steps on modifying the index.html file in the public folder of a React project.

Explanation of how to structure a basic React component and render it using JavaScript.

Importance of using function components in React for optimized performance.

Guide on setting up Visual Studio Code for React development and configuring necessary extensions.

Introduction to npm (Node Package Manager) and how to manage project dependencies.

Steps to handle local and global installation of npm packages for development.

Instructions on how to run a React app using 'npm start' and check the output in a browser.

Discussion on the structure of the 'App.js' file and how it serves as the main component.

Explanation of the 'createRoot' method for rendering components in the DOM.

Overview of deleting unnecessary boilerplate code and focusing on essential elements in a React app.

Tips on managing project files and components to maintain a clean project structure.

Introduction to functional components and the shift from class-based components in modern React.

Transcripts

play00:00

हेलो हेलो एवरीवन महीने वेस्टइंडीज वर्सेस

play00:02

फाइनली Bigg Boss करें गैस के ऊपर एक बहुत

play00:07

सारी रिक्वेस्ट थी तो फाइनली

play00:12

चाहिए जो कि उस

play00:16

समय में

play00:23

पूरा हो

play00:26

[संगीत]

play00:30

सेट ए क्रिएटर यूज करके रोजाना सुबह टाइम

play00:33

इसकी सीधा कहते हैं

play00:35

[संगीत]

play00:36

play00:39

पोयम जानकर 34 रिया विज अय लाइक थिस

play00:53

ए फ्रेमवर्क होता है जिसमें कि हमें अलग

play00:56

से और कांग्रेस की रोशनी बढ़ती बेसिक

play00:58

बैंकिंग सारे जेवर खबर लाइव में हमें अलग

play01:02

से और पैकेजेस कॉल करने पड़ते हैं इनिशियल

play01:05

सपोर्ट के लिए फॉर एग्जांपल शूटिंग करनी

play01:07

है एंजॉय

play01:09

दा प्रेडिफाइंड ज्यादा सब कुछ समय पर संघ

play01:12

के साथ ही रिपोर्ट में हम रोल करेंगे उसके

play01:18

बाद जो राइटिंग के लिए उसके लिए लघभग

play01:27

इसलिए उस

play01:29

पॉइंट है

play01:37

ए सिंगल पेज आप इसे बना सकते हैं मतलब एक

play01:41

बात वेबसाइट तुम्हारी कोई भी लांच हुई

play01:43

वेबसाइट या व्यापार उसके बाद वह बसें

play01:46

ओवरलोड उसके बाद पेज विल ओनली करना पड़ेगा

play01:48

तो मैं एक प्रिंस दूसरी पर जाना है तो मैं

play01:50

डाटा सेट करना है सिंगल लोड होता है बाकी

play01:53

क्लिक करोगे स्विच ऑफ देंगे तब लेकिन

play01:55

मिलूंगी जाए तो मैं दिखाओ यूट्यूब पर कैसे

play01:57

हैं एक बार फोन तो कर लो यार

play02:02

थे साइट एंड फीलींगस टो जीमेल उसमें भी

play02:05

आस-पास इसके अलावा सबसे बड़ा रीज़न है और

play02:08

यूज कर सकते हैं बॉक्सिंग की सबको ऐसा

play02:11

नहीं है कि जैसे एक प्रोडक्ट कार्ड बनाना

play02:13

तो बार-बार लिखो और के साथ

play02:18

प्रोडक्ट्स

play02:20

को

play02:25

सबसे बड़ा यह

play02:28

सिर्फ से

play02:31

है तो रियर करने से बच जाते हैं

play02:34

घृत किसी भी वेबसाइट को देखते हैं तो हमें

play02:37

एक नया बाघ

play02:39

है और जिसमें कि कुछ चीजें हैं जो हर पीस

play02:43

में जैसे कि हम जानते हैं कि

play02:51

हम बॉक्स में

play02:59

कमेंट

play03:03

कर सकते हैं मैं

play03:06

कर सकते हैं कि

play03:09

सब्सक्राइब

play03:11

करें चैनल

play03:13

सब्सक्राइब करें

play03:17

वीडियो में सब्सक्राइब करना बिल्कुल

play03:22

करते हैं और

play03:25

और उसके बाद थोड़ा फैमिलियर होंगेय के

play03:27

फोल्डर सकते से सुबह टाइम इसकी सीधा

play03:29

वीडियो साथ करते हैं चलते कंप्यूटर में

play03:31

चलो सौदा नंबर वन 0 सी पे करनी है node.js

play03:37

को इंस्टॉल करना है जैसे गूगल पर सर्च

play03:39

करोगे

play03:40

या फिर

play03:44

यहां पर यह अपने और

play03:47

अगर

play03:49

वह तो यह

play03:52

सेट

play03:53

करो को ऐड कर दिया है

play03:58

है और बेस कोट आए अजीम के तुम्हारे पास हो

play04:01

साफ जाहिर होती है तो वो न्यूटल में चलाओ

play04:04

यह टर्मिनल चला क्लियर दबाया मैंने केंटर

play04:07

किया अब इस टर्मिनल में यह मैसेज फोल्डर

play04:10

के अंदर हूं इतना बटन हूं

play04:13

202 अब सबसे पहले अगर मैं नोट लिख दूं

play04:18

तेरे को आगे वेलकम टू लोटस

play04:22

48.15 अभी तो ठीक ही चल रहा है मैंने

play04:25

लेटेस्ट नहीं तो इसलिए मैं भी तुम्हें

play04:29

कैसे इंस्टॉल करना या के लिए श्याम कथा

play04:35

तुम्हारे सामने कोई चेंज करने की जरूरत

play04:39

नहीं है

play04:41

है और इससे अनचाहा कि रहने दो इंस्टॉल

play04:48

इस सुझाव को मैंने Note 4 में चला हुआ तो

play04:50

इससे क्या होगा क्लोज करो

play04:51

फोन यह टर्मिनल ऑन कर दूं खत्म हो

play05:01

का समय हो चुका है

play05:07

कि एंड अगेन टर्मिनल चला तो नो टाइप करता

play05:09

हूं

play05:12

अजय को

play05:13

अपने सुझावों से 1615 नोट का वर्जन राइट्स

play05:17

ओवर में लिफ्ट 120 टूट गया जब उसके प्रेम

play05:22

करूं डाइरैक्टली राइट शॉर्ट नोट चल पा रहा

play05:25

है अब कंट्रोल सी दवा के मैटर नोट के पीछे

play05:28

से कूट कर दिया क्लियर कर मोटा मिल

play05:30

नोटिसों के बाद सबसे इंस्टॉल कैसे करेंगे

play05:34

अपने लैपटॉप को अमृत टाइप करना एन पी एक्स

play05:36

इसके दो तरीके हैं या तो हम रेट की शेयर

play05:40

लाइक टो ब्रिंग टो ए गर्ल अपने सिस्टम में

play05:41

या फिर ग्लोबल सोनकर ने तो जब जब हम रेट

play05:46

क्या है बॉईल करेंगे हमें सिंपली टाइप

play05:48

करना एन पीएम नहीं एन पी एक्स एन पेस्ट

play05:52

मतलब सिंगल टाइम के लिए बात हो रही है

play05:53

एमपी ex-cricketer

play05:57

रिएक्ट ऐप यह देश के लिए कमांड एडिट इस

play06:01

टाइप करना है इस वाली मशीन ठे क्रिएट योर

play06:03

पेनिस के आगे हमारी ऐप का नाम जो कि स्मॉल

play06:06

लेटर्स में होना चाहिए अ और सुना लिख दूं

play06:09

मैं आप जैसे लाइट अभी सारा बताया ग्लोबल

play06:13

सिविल लाइंस रोल करेंगे जो कि यह है

play06:15

यह और बिल्कुल से अलार्म्स और कल उससे उस

play06:19

समय हुआ हमें सीधा यह लिखना पड़ेगा फ्री

play06:22

लैपटॉप और मै अप

play06:24

सोम आफ ग्लोबल सिलाई इंस्टोल करके नहीं कर

play06:27

रहा मैं ऐसे करके करूंगा अब हर बार हमें

play06:29

ऐसे लिखना पड़ेगा एंपियर जब मैं इन 16

play06:31

करनी होगी और तुम याद करो शिमला कोई वाटर

play06:34

है तो यह करो एंटर करो एन अभियां इन चोरों

play06:37

ने शॉट हो जाएगी तो

play06:39

कि यह को नेटिव्स सफरिंग फ्रॉम थिस

play06:41

क्रिएटिव Y2 प्रो सीबी श्रीवास्तव एंटर

play06:45

करो एंटर व्याघ्र है

play07:00

झाल

play07:07

आप सोए देखो मेरी ऐप आ चुकी है यहां पर

play07:11

बोर हो चुका है और यह बहुत ही विड्रॉल उसे

play07:14

सिरहन दौड़ सो यह को मेरे पास अभी एक यह

play07:17

बता कि पीएम का नोट करें पीएम का नोट के

play07:21

लिए इसे इंस्टॉल कर सकते हैं अपने आप नहीं

play07:25

डाल देंगे तो यह नया अपडेट कर लेता हूं यह

play07:31

कमेंट करके है

play07:33

हुआ है

play07:35

कर दो

play07:39

मां सो गई सो क्लियर टाइप करता नाटक में

play07:42

लगा लें अब इस ऐप को साफ कैसे करें सबसे

play07:46

पहले ब्रेड शोल्डर केंद्र मुझे शोल्डर

play07:48

जाना मैं आपके शो कोड एंड टाइप करना है

play07:51

बताऊंगा एक दृढ माया को माया के बाद एंटर

play07:55

करना तो वीएस कोड मेरा गेट शोल्डर बोडी

play07:57

शोल्डर केंद्र खुलेगा एंटर

play08:02

कि यह खुल गया आसमां आपके अंदर खोला है सो

play08:05

पुराना टीवी प्रोड्यूसर के पोस्ट इन थिस

play08:09

मैटर में चलाओ क्लियर का ये डुप्लीकेट

play08:13

सकता माया के अंदर यही हम सही है और

play08:15

सिंपली एन पीएम स्टार टाइप करना है

play08:17

तुम्हें इससे क्या होगा इस्तेमाल सर्विस

play08:20

आठ गया का रेट का तो यह देखो ऐप हमारी चल

play08:23

गई है और एक खुद बखूबी ब्राउज़र में अब

play08:25

मैं नोट वाले को क्लोज करो यह हमारी आप और

play08:29

यह डिफ़ाल्ट आती है इसमें चीज़ें सॉस को

play08:31

अरेस्ट कर देते हैं अब यह मैं खोल के

play08:34

दिखाओ कंट्रोल उसके बाद लिमिट जाऊं

play08:38

2012 यह कुछ खास नहीं है सा नार्मल यह

play08:41

फ्रूट फोल्डर एक डैम उसके अंदर रैप उच्चतम

play08:45

यह शो एक नार्मल वेबसाइट होती है कुछ कभी

play08:50

यह स्पेशल मत समझना इसे अ

play08:53

कुछ स्पेशल चीज आगे वह आ जाएगी सो ए

play08:56

पब्लिक फोरम में वह बहुत सारी चीजें ओपन

play08:58

मत करना सोर्स वर्ल्ड रिकॉर्ड्स में बहुत

play09:00

सारी चीजें लाइक बहुत सारी है मैं अब

play09:03

तुम्हें कौन-कौन सी रेड्डी असर यह फाइल

play09:05

छोड़ो एडिट जैसी फाइल छोड़ो और इंडेक्सड

play09:09

बांड जैसी 563 फाइल को छोड़ बाकी सब डिलीट

play09:12

कर दो सो एस टो एडिट एंड डिलीट

play09:15

डिलीट डिलीट यह क्या यह भी तुम्हारे जानने

play09:19

की जरूरत नहीं है यह जाओ डिलीट करो सिंपली

play09:21

है

play09:23

कि तुम्हारे पास लाइज अट यह तीन फाइल बचें

play09:26

बस और हमारा घाघरा क्योंकि इन 505 अमित

play09:31

डिलीट करिए वह इसमें यूज हो रही थी अभी

play09:34

डोंट वरी यह फोल्ड करके तो हम समस्या क्या

play09:36

है तो यह जो जो मैं बता दूं अगर 21 तो यह

play09:39

फंक्शन एक्जिस्ट्स इन करता है मैं डिलीट

play09:41

कर दी फाइनली हटाओ और यह इंपोर्ट जो कर

play09:44

रहे थे हटाओ सीएस हटाओ

play09:47

सेव इसे क्लोज टैबलेट जिसमें से यह लोगों

play09:51

अब डिलीट कर चुकीं सटाओ

play09:53

और बीच में क्या करता हूं मैं सवा डाल

play09:55

देता हूं बस एक दीप बना रहा हूं

play10:00

इसमें हेलो लिखा है

play10:04

हेलो हेलो

play10:06

थे वर्ड नहीं गाइस सिर्फ हुआ था मध्ए रखो

play10:10

आगे हेलो भाई एप्स अलग हमारे नॉर्मली

play10:12

लोकल लो सविताबेन पर है

play10:15

कि अब सूर्य काम कैसे करता यह जानते हैं

play10:18

इंटरनेट जैस्मा जाओ इन वह क्या वह सब

play10:21

खैरियत इंपोर्ट के ओवर रेट में से रिएक्ट

play10:24

डोंट क्लाइंट यह नोट रिक्वायर्ड ओम बशीद

play10:28

सैंपल यह समझने इंपोर्ट करना बिल्कुल चीज

play10:30

है मैंने जैसा सेटिंग बताइए रेट में हर

play10:32

चीज कंपलेंड है तो यह जो ऐप वाली फाइल

play10:34

इसमें कंप्लीट बनाए और यह जो डांस दिखाएं

play10:38

इस यौवन नहीं है विवाह बताऊंगा कि आप पर

play10:41

यह जो पॉइंट है यह पता लग गया

play10:44

कॉन्फ्रेंसिंग में समझा दिया क्या होता है

play10:46

सो यह जो इंडेक्स वाली फाइल है यह क्या कर

play10:49

रही है यह जो भी आ रहा है यहां पर कंपनी

play10:53

ने अभी ऐप है अगर 10 और बढ़ना है वो ऐप के

play10:57

अंदर कुछ और बढ़ते हैं या जो भी वैसे भी

play10:59

कौन फ्रेंड है वह चेंज कर रही है हमारे

play11:02

पब्लिक फोल्ड करेंगे फाइल है नेक्स्ट

play11:04

एचटीएमएल फाइल हमारी यह है द मैन फाइल जो

play11:08

वेबसाइट लोड करें यह फाइल है और इसमें

play11:10

क्या पढ़ा हुआ है अगर यह मैं खाली सी करूं

play11:13

कमेंट हटाकर और मजलूमों भूख और खाली कर

play11:16

दें फाइल

play11:18

को है

play11:24

और सुनाओ क्या-क्या पड़ा हुआ सिंपली एक है

play11:27

टैग जिसका टाइटल रिएक्ट आप इसको करके सेंड

play11:30

कर देते हैं फर्स्ट स्टेप

play11:32

ठीक है अंदर बॉडी इसमें 9 स्क्रिप्ट आईएस

play11:36

नो स्क्रिप्ट यह कर दिया था इस क्रिकेटर

play11:38

ने फिर मैसेज कर देना यू नीड टो इनेबल

play11:40

जावास्क्रिप्ट टो रन थिस आप ठीक है इसके

play11:43

बाद सिर्फ एक डिवाइस में लैटर अली एक

play11:45

बिस्कीट रूट बस

play11:47

अब जावास्क्रिप्ट है तुम्हें शांति होगी

play11:50

प्रोडक्ट लांच करो कर दो

play11:53

कि डॉक्यूमेंट गेट एलिमेंट वाइड

play11:56

सॉन्ग स्टेटमेंट विडियो के रूट किया 100

play11:59

गिफ्ट मिल गया वह लड्डू अब यह रेट डोंगरी

play12:02

इंपोर्ट किया था उस पर इस क्रीम मेथड

play12:04

क्रिएट रूट

play12:05

इसमें प्लस करना होता है

play12:09

ए वाइब्रेंट जिसको जो हमारा रूट एलिमेंट

play12:12

होगा और हम सेलेक्ट कर चुके हुआ सुझाव या

play12:15

चेंज करेंगे वह उसके अंदर ही चेंज होगा

play12:19

उस डेट के नीचे सीआईडी रूट है अभी समझाएं

play12:22

कैसे हो

play12:24

मैं सुबह से यही करता है अब यह रूट्रम

play12:27

भाग्य बना दिया वेरिएबल और इसके पास है

play12:29

मैं थोड़ा जाएगा रूट डाइनर इसके अंदर और

play12:33

यह हटा भी देता हूं

play12:35

तो भी एक सिलाई कोई दिक्कत नहीं होगी

play12:39

अच्छा ठीक है

play12:41

कल सुबह डिस्ट्रिक्ट मोड होता है कुछ अभी

play12:43

जान जोड़ने क्या

play12:46

कि इसके अंदर बेसिकली हमारा यह पॉइंट

play12:49

रेंडर कर दिया उन्हें ऐप कंप्लेंट

play12:52

हां बस इधर समझ लो अगर यह इतना भी समय

play12:55

नहीं तो इसे जाने दो बस यह डिफ़ाल्ट इस

play12:57

रक्षा बॉयफ्रेंड कोड इसे रहेगा और सच

play12:59

बताऊं तो वो रपट में कहा विमान जो नहीं है

play13:02

धीरे-धीरे कंफर्टेबल जाओगे आधे स्मार्ट

play13:04

हैं यह हमारा पहला पॉइंट है जो उसमें जार

play13:07

अंदर होने के लिए ना करना चाहें तो यहीं

play13:11

पर बागी पॉइंट बैठ कर लेना है बट जैसा अलग

play13:14

चीज ले रखे हैं क्योंकि हमें चाहिए कि

play13:17

हमारी apk फाइल में भरते भरते भरते का यह

play13:22

माप मैन को बांटा है अब जो भी में एडिट

play13:24

करना होगा इसी में ऐड करेंगे फॉर एग्जांपल

play13:26

अगर नैक पॉइंट बनाता हूं अभी

play13:30

को लक्षय एक और आसमान कॉपी के ऊपर इसका

play13:35

नाम हो गया कि बताए हैं

play13:38

से कुछ भिन्न रखते तुम्हें कंपन एंड बस

play13:41

शर्त है कि वह फर्स्ट लेटर कैपिटल मानसी

play13:43

माइग्रेंट और यह मैंने रख दिया कौन पॉइंट

play13:48

ऐसे लिखकर सेव कर लूंगा तो क्या होगा कुछ

play13:51

नहीं होगा क्यों कि वह मैंने डॉक्टर ऐड कर

play13:55

दिया बस अब अपनी मैप में ऐड नहीं किया 100

play13:59

ग्राम है लोगों के बीच में यहां पर यह

play14:01

हमारा घाघरा कर सकता हूं ऐसे लिखूंगा तो

play14:04

अक्षय हेलो माय कंप्लीट गाइस ऐसे सौदा

play14:08

मुझे कम पर एंड यहां पर यूज करना तो मुझे

play14:11

ऐसे लिखना पड़ेगा

play14:12

साल प्रोजेक्ट है जैसे अच्छे दिखते हैं

play14:15

सेव का

play14:16

यहां वह हेलो उसके बीच में यह जो बटन पर

play14:20

राज योग यह वाला डिब्बा यह होगा उसके बाद

play14:22

गाइस जैसे साइड अमित वह बताएं कि देवता

play14:27

ब्लॉक एलिमेंट तो उसे पूरी रकम पूर्ण पूरा

play14:29

है वह लाइन रैली इसलिए वह लाइन मार रहे हो

play14:32

मैं इतना समझ में आ गया और के बेसिक्स

play14:35

क्लियर हो जाएंगे तो यही रूट है यह समस्या

play14:37

है तो आयोडाइड ओके अब समझते हैं जिससे यह

play14:41

जो तुम्हें शिरडी में जैसा दिख रहा है ऐसी

play14:43

मिलता है न भी बताया है क्या है फिर है

play14:45

प्लस योर मैन कॉम्पोनेंट यह बनाया है यह

play14:48

फंक्शन का यूज करके बनाया है हम फंक्शन

play14:51

कंबोडिया सेटिंग क्लोज 20 कंपनियां सकते

play14:53

हैं बट इस प्ले लिस्ट में प्रोड्यूस प्ले

play14:55

लिस्ट मैं इंग्लिश मीडियम क्लास है उसको

play14:58

पॉइंट को कि वह फंक्शन कंपोनेंट के

play15:01

कंपैरेटिव थोड़ा हार्ड है प्लस फंक्शन

play15:04

कंपोनेंट पहले बिगाड़ देते बढ़ल जब से

play15:06

इसमें कुछ एडिशन फीचर जाएं रिएक्ट तक जब

play15:09

से को फंक्शन कम है एकदम मस्त हुए हैं तो

play15:12

यह यूज करने चाहिए सो नेक्स्ट वीडियो में

play15:14

देखेंगे जैसे इसका सेंटेंस यह बेसिकली ना

play15:17

जाव अपर्णा स्टेटमेंट यह है जी एडिसन जाए

play15:20

उसके टॉर्च फेस्टिवल का मिक्सचर ठीक है तो

play15:23

वह देखेंगे अ

play15:26

कर दो

play15:29

में पूरी जानकारी दो

play15:32

कर दो

play15:38

का

play15:40

व्यंजन है

play15:44

[संगीत]

Rate This

5.0 / 5 (0 votes)

الوسوم ذات الصلة
ReactNode.jsWeb DevelopmentCoding TipsJavaScriptApp SetupTutorialFrontendProgrammingTech Guide
هل تحتاج إلى تلخيص باللغة الإنجليزية؟