#17 JavaScript Objects | JavaScript for Beginners Course

preview_player
Показать описание
JavaScript object is a non-primitive data-type that allows you to store multiple collections of data.

In this video, we will learn with Punit about objects in JavaScript, how we can access the values of objects and methods. We will also learn to use objects to create more structured programs in JavaScript.

Watch the full video to have a clear understanding of the working of JavaScript Objects.

~

Timestamps:
00:16 JavaScript Objects
02:28 Accessing Object Properties
04:31 Object Methods
05:32 Programming Task
06:12 Quiz

Find Programiz elsewhere:

---------------------------------------------------

#17 JavaScript Objects | JavaScript for Beginners Course

#programiz #javascript #objects #jstutorial #learnprogramming #programizvideo
Рекомендации по теме
Комментарии
Автор

🚀Loved the JS tutorial? Take it further with Programiz PRO!
Refine your skills and build confidence with interactive lessons, quizzes, and challenges. Strengthen your programming foundation and master JavaScript today!

programizstudios
Автор

I really enjoy your tutorial videos and website content. Very simplified.

kamalbisht
Автор

Just Increasing My Knowledge From Last 1 Year Due To You

Shivfromtvr
Автор

Thanks for this tutorial. It makes learning so easy.

TheGinanisque
Автор

Please make a React js tutorial
It is also very essential nowadays 🙂

ABHIJITKARMAKARrkmania
Автор

const student = {
name: "John",
rollNo: 24,
totalMarks: 35,
grade:0,

checkGrade: function() {
let grade = parseInt(prompt("What is yourgrade? "));
return grade;
},
checkPassFail: function(grade){
if(grade>40){
console.log("You passed");
}else if(grade<=40){
console.log("you failed");
}
}
}

let grade = student.checkGrade();
student.checkPassFail(grade); -after hours I finally completed the task, although I'm not really sure why I declared let grade at the end, partially because it kept telling me that grade was not defined but I defined it in the function so still don't get why the definition within the function was not enough. i even tried to define it globally by putting let grade; at the top of the code, but it made things worse. anyways, hope this helps someone who's stuck

Nopenoway_