'F' → Fullscreen
console.log("--- Demo 1 - Simple To-Do List ---");console.log("Let's add a few tasks to your list.");
let task1 = prompt("Task 1:");let task2 = prompt("Task 2:");let task3 = prompt("Task 3:");
console.log("\nYour To-Do List:");console.log("1." + task1);console.log("2." + task2);console.log("3." + task3);prompt("Press enter to continue..."); // Pause before the next demo app//
console.log("--- Demo 1 - Simple To-Do List ---");console.log("Let's add a few tasks to your list.");
let task1 = prompt("Task 1:");let task2 = prompt("Task 2:");let task3 = prompt("Task 3:");
console.log("\nYour To-Do List:");console.log("1." + task1);console.log("2." + task2);console.log("3." + task3);prompt("Press enter to continue..."); // Pause before the next demo app
// -----------------------------------------------------------------------------
console.log("\n--- Demo 2 - User Profile Setup ---");console.log("WELCOME! LET'S SET UP YOUR PROFILE...");
let username = prompt("Enter your username:");let subject = prompt("What's your favorite subject in school?");
// List of optionsconsole.log("Choose your preferred after-school activity:");console.log("- Sports");console.log("- Music");console.log("- Gaming");console.log("- Volunteering");let activity = prompt("->"); // This is just an arrow prompt.
console.log("\n- Creating your profile -");console.log(`NAME: ${username}`);console.log(`FAVORITE SUBJECT: ${subject}`);console.log(`AFTER-SCHOOL ACTIVITY: ${activity}`);prompt("Press enter to continue...");//
console.log("--- Demo 1 - Simple To-Do List ---");console.log("Let's add a few tasks to your list.");
let task1 = prompt("Task 1:");let task2 = prompt("Task 2:");let task3 = prompt("Task 3:");
console.log("\nYour To-Do List:");console.log("1." + task1);console.log("2." + task2);console.log("3." + task3);prompt("Press enter to continue..."); // Pause before the next demo app
// -----------------------------------------------------------------------------
console.log("\n--- Demo 2 - User Profile Setup ---");console.log("WELCOME! LET'S SET UP YOUR PROFILE...");
let username = prompt("Enter your username:");let subject = prompt("What's your favorite subject in school?");
// List of optionsconsole.log("Choose your preferred after-school activity:");console.log("- Sports");console.log("- Music");console.log("- Gaming");console.log("- Volunteering");let activity = prompt("->"); // This is just an arrow prompt.
console.log("\n- Creating your profile -");console.log(`NAME: ${username}`);console.log(`FAVORITE SUBJECT: ${subject}`);console.log(`AFTER-SCHOOL ACTIVITY: ${activity}`);prompt("Press enter to continue...");
// -----------------------------------------------------------------------------
console.log("\n--- Demo 3 - Simple Survey ---");console.log("We'd love to get your feedback!");
let favoriteColor = prompt("What is your favorite color?");let favoriteFood = prompt("What is your favorite food?");let travelDestination = prompt("Where is a place you would like to travel?");
console.log("\n- Survey Results -");console.log("Favorite Color: " + favoriteColor);console.log("Favorite Food: " + favoriteFood);console.log("Travel Destination: " + travelDestination);prompt("Press enter to continue...");//
console.log("--- Demo 1 - Simple To-Do List ---");console.log("Let's add a few tasks to your list.");
let task1 = prompt("Task 1:");let task2 = prompt("Task 2:");let task3 = prompt("Task 3:");
console.log("\nYour To-Do List:");console.log("1." + task1);console.log("2." + task2);console.log("3." + task3);prompt("Press enter to continue..."); // Pause before the next demo app
// -----------------------------------------------------------------------------
console.log("\n--- Demo 2 - User Profile Setup ---");console.log("WELCOME! LET'S SET UP YOUR PROFILE...");
let username = prompt("Enter your username:");let subject = prompt("What's your favorite subject in school?");
// List of optionsconsole.log("Choose your preferred after-school activity:");console.log("- Sports");console.log("- Music");console.log("- Gaming");console.log("- Volunteering");let activity = prompt("->"); // This is just an arrow prompt.
console.log("\n- Creating your profile -");console.log(`NAME: ${username}`);console.log(`FAVORITE SUBJECT: ${subject}`);console.log(`AFTER-SCHOOL ACTIVITY: ${activity}`);prompt("Press enter to continue...");
// -----------------------------------------------------------------------------
console.log("\n--- Demo 3 - Simple Survey ---");console.log("We'd love to get your feedback!");
let favoriteColor = prompt("What is your favorite color?");let favoriteFood = prompt("What is your favorite food?");let travelDestination = prompt("Where is a place you would like to travel?");
console.log("\n- Survey Results -");console.log("Favorite Color: " + favoriteColor);console.log("Favorite Food: " + favoriteFood);console.log("Travel Destination: " + travelDestination);prompt("Press enter to continue...");
// -----------------------------------------------------------------------------
console.log("\n--- Demo 4 - Fantasy Story Builder ---");console.log("Let's create a fantasy story!");
let mainCharacter = prompt("Name your main character:");let magicalCreature = prompt("Name a magical creature:");let aMagicalPlace = prompt("Name a magical place:");
console.log("\n- Your Story -");console.log("Once upon a time, there was a hero named " + mainCharacter + ".");console.log(mainCharacter + " traveled to the " + aMagicalPlace + " to seek the legendary " + magicalCreature + ".");console.log("Their quest was just beginning...");//
Your program output should something similar to the sample output below.
--- Demo 1 - Simple To-Do List ---Let's add a few tasks to your list.Task 1: Do HomeworkTask 2: Cook DinnerTask 3: Clean Bedroom
Your To-Do List:1.Do Homework2.Cook Dinner3.Clean BedroomPress enter to continue...
--- Demo 2 - User Profile Setup ---WELCOME! LET'S SET UP YOUR PROFILE...Enter your username: amortimerWhat's your favorite subject in school? Computer ScienceChoose your preferred after-school activity:- Sports- Music- Gaming- Volunteering-> Gaming
- Creating your profile -NAME: amortimerFAVORITE SUBJECT: Computer ScienceAFTER-SCHOOL ACTIVITY: GamingPress enter to continue...
--- Demo 3 - Simple Survey ---We'd love to get your feedback!What is your favorite color? purpleWhat is your favorite food? Pizza Hut Pepperoni PizzaWhere is a place you would like to travel? Great Britain
- Survey Results -Favorite Color: purpleFavorite Food: Pizza Hut Pepperoni PizzaTravel Destination: Great BritainPress enter to continue...
--- Demo 4 - Fantasy Story Builder ---Let's create a fantasy story!Name your main character: Fart KnightName a magical creature: Logan PaulName a magical place: Cleveland, Ohio
- Your Story -Once upon a time, there was a hero named Fart Knight.Fart Knight traveled to the Cleveland, Ohio to seek the legendary Logan Paul.Their quest was just beginning...
You may write your reflection answers as comments at the bottom of your code.
prompt()
function allow you to make your programs interactive?
Submit your activity and reflection answers to the appropriate dropbox.