scrimba
Основы JavaScript
Доступ к свойствам объекта
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Доступ к свойствам объекта
AboutCommentsNotes
Доступ к свойствам объекта
Expand for more info
index.js
run
preview
console
var person = {
name: "Николай",
age: 19,
country: 'RU',
isMetacodeStudent: true,
skills: ['HTML', 'CSS', 'JavaScript']
};

Console
index.html
-2:33