Object Destructuring || JavaScript (ES6) essentials for React #javascript #react

preview_player
Показать описание
Mastering fundamental JavaScript concepts is a prerequisite for diving into React. A solid understanding of JavaScript essentials lays the groundwork for seamless React development. Without this foundation, navigating React's complexities can be challenging. Strengthen your JavaScript skills first to unlock the full potential of React programming.

*** In this video you will master JavaScript Object Destructuring ***
** ECMAScript 6 concepts

⭕Udemy Projects:
🚀Enroll for 43+ hours of PHP Course Content:

🚀1️⃣Registration system using PHP and MySQL

🚀2️⃣Get access to the full PHP CRUD project.

⭕Other Channel:
👉Facebook Account: Khaiser Khanam (excelhunar)

Thank you for Watching🙂
If you learned something from the video, do Like, Share, and Subscribe.
Рекомендации по теме
Комментарии
Автор

Hello Learners 👋, Hope you all are doing great.
Please watch the complete video to understand deeply about the concept. I know the video is lengthy, but it's watching 💯

👉Instagram: @khaiserkhanam

Object on which we will be working.
const cartoonData = {
id: 1,
title: "Tom And Jerry",
createdIn: "1940",
createdBy: "William Hanna and Joseph Barbera",
isAired: true,
famousCharacters: [
"Tom-Cat",
"Jerry-Mouse",
"Spike",
"Tyke",
"Toodles Galore",
"Quacker",
"Jeannie",
"Mammy Two Shoes",
],
books: {
English: {
book1: "There's a Mouse Hiding in This Book",
book2: "This Book Is Not a Piece of Cheese!",
},
Hindi: "Available in hindi",
French: "",
},

channel: "cartoon network",
NoOfEpisode: 2736, // random number
reviews: {
tv_review: {
rating: 8.2,
NoOfRatings: 564345, // random number
NoOfFeedback: 0, // random number
},
IMDb: {
rating: 8.4,
NoOfRatings: 657678, // random number
NoOfFeedback: 35465, // random number
},
},
};
Let me know your feedback🙂

KhanamCoding