в STEAM стартанула весенняя распродажа , еще 13 марта , успейте закупиться играми со скидкой 80%
❤2
🔥2❤1🥰1
Приложение находится в бета версии, скоро будет доработано и будет добавлено много крутых функций.
var text = document.getElementById('text');
text.title = "New text";
console.log(text.title);
text.style.color = "red";
text.style.backgroundColor = "blue";
text.innerHTML = "New<br>style";🔥2
class Person {
constructor(name, age) {
this.name = name;
this.age = age;
}
info () {
console.log("Имя: " + this.name + ", Возраст: " + this.age);
}
}
var bob = new Person('Bob', 23);
var alex = new Person('Alex', 45);
alex.name = "Sergey"
bob.name = "Ivan"
alex.info()
bob.info()
//console.log(alex.name + " " + alex.age);
//console.log(bob.name + " " + bob.age)❤3