Показать сообщение отдельно
  #3 (permalink)  
Старый 30.07.2019, 13:53
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,075

crabkilla,
const albumInfoObj = {
  "title": "Ray of Light",
  "singer": "Madonna",
  "year": 1998,
  "songs": ["Swim", "Little Star", "Frozen", "Skin","The Power of Good-Bye"],
  "recorded": {"studioName": "Larrabee North Studio", "months": 4.5},
  "singles":  [ {"name": "Frozen", "year": 1998},
		{"name": "Nothing Really Matters", "year": 1999},
		{"name": "Ray of Light", "year": 1998} ],
}
let propList = "";
for (const prop of albumInfoObj.singles) {
  propList += prop.name + "\n";
}
console.log(propList);
Ответить с цитированием