в 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
const SumNumbers = (a, b) => {
if (typeof a !== 'number' || typeof b !== 'number') {
return "a and b не числа!"
}
if (a <= 0 || b <= 0) {
return "Неприемливые числа"
}
return a + b
}
let sum = SumNumbers(55, 5)
console.log(sum)❤1🔥1
Forwarded from КосмоНавт (KosmoNavt.cpp)
Please open Telegram to view this post
VIEW IN TELEGRAM
🥰2❤1