diff --git a/js/l1.js b/js/l1.js new file mode 100644 index 0000000..743f43a --- /dev/null +++ b/js/l1.js @@ -0,0 +1,10 @@ +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]); \ No newline at end of file