console.log(ME)
const ME = {
role: "Frontend Developer",
location: "Earth (probably)",
status: "Live in the moment",
philosophy: {
engine: "Curiosity",
motto: "Stay true to myself",
perspective: "Life!==Result && Life===Process",
belief: "Infinite Learning",
},
favorites: {
beverage: "Coffee",
activities: ["Traveling", "Writing"],
interests: ["Space", "Aliens", "UFOs", "Nature", "Science", "Animals", "Interior Design", "Furniture Flip"],
reads: {
genres: ["Sci-Fi", "Thriller", "Mystery"],
alsoLoves: "Literature in general",
},
},
enjoy(moment) {
return `Enjoying the ${moment} โ`;
},
getInspiration() {
const sources = [
...this.favorites.activities,
...this.favorites.interests,
"a good book"
];
return sources[Math.floor(Math.random() * sources.length)];
},
build(inspiration) {
return `Building something inspired by ${inspiration}`;
},
run: function() {
while (this.philosophy.belief === "Infinite Learning") {
this.enjoy("Present");
const inspiration = this.getInspiration();
this.build(inspiration);
}
},
};
ME.run();

