Solving JavaScript Object Exercises: Your Essential Guide 2023 | Tutorial #13 | Coding The Brains

preview_player
Показать описание
Back with Tutorial 13 of our JavaScript series, we've put together this solutions guide for the JavaScript Object exercises from the previous tutorial.

In this video, we'll be stepping through each exercise, breaking down the solutions in a comprehensive, easy-to-understand manner. We'll explain why certain methods and properties are used, helping you to understand JavaScript Objects more deeply.

This tutorial is the perfect opportunity to apply and solidify your knowledge of JavaScript Objects, bringing you one step closer to JavaScript mastery.

Remember, our GitHub repository has all the code from both videos for your review and practice. So, if you've missed out on the previous tutorial, you can still catch up and follow along.

#JavaScriptObjects #JavaScriptSolutions #JavaScriptTutorial #JavaScript2023 #WebDevelopment #CodingTutorial #Programming
Рекомендации по теме
Комментарии
Автор

Your explanations are so concise and easy to follow😀. Thank you for making this video!

MyCodingDiary
Автор

Thora sa peeche reh gya hu.. IA will catch up in 2 3 days

ghaziabdullah
Автор

var employee={
name:"John Smith",
job:"Programmer",
age:31,

namelength: function(){
name_length=this.name.length
console.log(name_length) },
lastname: function(){
for (var i=0; i<this.name.length;i++){
if (this.name[i]==" "){
var index=i;
var demo_string="";
for(var
demo_string+=this.name[j]
}
return demo_string;
}
}
}
}
employee.lastname();

employee.namelength();



I have actually done like this

AbdulWahab-tckk