Sports Game Example
let score = 0;
function addPoints(points) {
score += points;
console.log(`You scored ${points} points! Your total is now ${score}.`);
}
addPoints(5); // Outputs "You scored 5 points! Your total is now 5."
addPoints(3); // Outputs "You scored 3 points! Your total is now 8."
let timeRemaining = 60;
function subtractTime(seconds) {
timeRemaining -= seconds;
console.log(`${seconds} seconds have passed. Time remaining: ${timeRemaining} seconds.`);
}
subtractTime(15); // Outputs "15 seconds have passed. Time remaining: 45 seconds."
subtractTime(30); // Outputs "30 seconds have passed. Time remaining: 15 seconds."Last updated