You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const cup = {
isEmpty: true,
fill: function() {
this.isEmpty = false;
console.log("Cup filled! Time to code with coffee.!");
}
};
if (cup.isEmpty) {
cup.fill();
// Start coding here...
console.log("Let's write some awesome code!");
} else {
// Cup is already filled, no need to refill.
console.log("Cup is already filled! Don't waste your time let's together dive into coding!");
}
About
Here I make a list of some of the good questions asked in Google interview codding rounds.