// Here is some info about me:D
const kotru = {
name: "Arsenij Kotikov",
website: "https://kotikov.is-a.dev",
languages: ["JavaScript", "NodeJs", "HTML", "CSS", "Bootstrap", "PHP"],
nowLearning: ["C++", "Python"],
print: function() {
console.log("name:", this.name);
console.log("website:", this.website);
console.log("languages:", this.languages);
console.log("languages, learning:", this.nowLearning);
}
};
kotru.print();
You can find more information here