my/js/l1.js
2026-05-16 20:41:02 +03:00

10 lines
No EOL
207 B
JavaScript

let x = {
name: "Алеша",
age: 25
}
x.city = "ДА";
console.log(x.age);
console.log(x.name);
console.log(x.city);
let al = ["яблоко", "человек", "бананы"];
console.log(al[1]);