create new folder js

This commit is contained in:
root 2026-05-16 20:41:02 +03:00
parent e7d4511090
commit 4da9274da6

10
js/l1.js Normal file
View file

@ -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]);