Manipulating Complex Objects - Basic JavaScript - Free Code Camp

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

I don't give a shit how many people have or have not seen this. When I'm going though freecodecamp and I'm trying to learn sometimes actually most all the time I need additional help or have questions. After watching this it made me feel like I wasn't alone. You explained everything and even at the end you did additional things that helped me understand what it all meant and how you can use it and make sense of it. Thank you SO much, seriously.

KevinTempelx
Автор

Thanks! The simple, was what I was missing!

glenroyterence
Автор

is there other way to add these objects by not manually adding it inside array? this is not about the given I'm just curious to dive new alternatives

icaruz
Автор

I used myMusic.push() then copy pasted. works the same

alvirfrancisco
Автор

var myMusic = [
{
"artist": "Billy",
"title": "Piano Man",
"release_year": 1973,
"property":"rock",
"formats": [
"CD",
"8T",
"LP"
],
"gold": true
},
{
" artist":"Linkin Parks",
"title":"Coldplay Cool",
"release_year":1999,
"formats":[
"CD",
"Cassette",
"LP"],

// Add a record here

}];


// running tests
myMusic[1] should contain an artist property which is a string
// tests completed


hw to resolve thsi problem sir

sumitsinha
visit shbcf.ru