const philip = {
name: "philip",
school: "Department of CS & Engineering, Ioannina Greece",
skills: ["Java π«", "Spring Boot π", "Python π", "ReactJS βοΈ", "Ruby on Rails β¦οΈπ€"],
interests: ["Web development", "Service Architecture"],
beveragesOfChoice: ["β", "β", "β", "β", "β"],
introduce() {
console.log(`Hi, I'm ${this.name} studying at ${this.school}.`);
},
listSkills() {
console.log("Here are some of my skills:");
this.skills.forEach(skill => console.log(`- ${skill}`));
},
workDay() {
while (this.beveragesOfChoice.length > 0) {
const beverage = this.beveragesOfChoice.shift();
console.log("Enjoying a cup of " + beverage);
console.log("β¨οΈπ₯β¨οΈπ₯β¨οΈπ₯");
}
console.log("Out of coffee! Time to brew another pot...");
}
};
philip.introduce();
philip.listSkills();
philip.workDay();
β
- Ioannina, Greece
-
08:45
(UTC +03:00) - https://www.codecademy.com/profiles/tag3373436962
- https://stackoverflow.com/users/17625629/vled
Highlights
- Pro
Pinned Loading
-
-
-
-
initializr
initializr PublicForked from spring-io/initializr
A quickstart generator for Spring projects
Java 4
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.