Sandorrr
@Korosaretaa
const steamProfile = {
username: "Korosaretaa",
level: 6,
hobbies: ["Gaming", "Volleyball", "FrontEnd"],
motto: () => "Eat. Sleep. Game. Repeat.",
favoriteGames: [
"Dota 2",
"CS:GO",
"Neco para 2"
],
status: "🟢 Online and ready to frag",
aboutMe() {
console.log(`Hey there! I'm ${this.username}, level ${this.level} Steam gamer.`);
console.log(`Favorite activities: ${this.hobbies.join(", ")}.`);
console.log(`Motto: "${this.motto()}"`);
}
};

steamProfile.aboutMe();
const steamProfile = {
username: "Korosaretaa",
level: 6,
hobbies: ["Gaming", "Volleyball", "FrontEnd"],
motto: () => "Eat. Sleep. Game. Repeat.",
favoriteGames: [
"Dota 2",
"CS:GO",
"Neco para 2"
],
status: "🟢 Online and ready to frag",
aboutMe() {
console.log(`Hey there! I'm ${this.username}, level ${this.level} Steam gamer.`);
console.log(`Favorite activities: ${this.hobbies.join(", ")}.`);
console.log(`Motto: "${this.motto()}"`);
}
};

steamProfile.aboutMe();
Currently Offline