xycu2.rar
52 subscribers
87 photos
6 videos
12 links
Download Telegram
На мировой рекорд
Наше приложение на RuStore:

https://www.rustore.ru/catalog/app/ru.invasion_team.pomoshnik
🔥21🥰1
xycu2.rar pinned «Наше приложение на RuStore: https://www.rustore.ru/catalog/app/ru.invasion_team.pomoshnik»
Приложение находится в бета версии, скоро будет доработано и будет добавлено много крутых функций.
1🔥1🥰1
заработал
...
🤔2
😡
🤔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
wooow
🔥1😁1
Новое обновление Windows11
спасибо Microsoft 🤗🤗🤗🤗
Undertale 2 вышел в steam!!!!
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
🥰21
const myObject = {
x: 12,
y: true,
z: 'hi'
}

Object.values(myObject).forEach(values => {
console.log(values)
})

const myObject = {
x: 12,
y: true,
z: 'hi'
}

Object.keys(myObject).forEach(keys => {
console.log(keys)
})

Методы keys и values для объектов
🔥2🤔1
Начал изучать классы и прототипы
class Comment {
constructor(text) {
this.text = text
this.votesQty = 0
}

upvote() {
this.votesQty += 1
}
}

const firstComment = new Comment('First comment')
1👍1🔥1🥰1
Лучший
4