11.6 Homework Assignment
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Personal Information Script</title> </head> <body> <h1>Check the Console for Personal Information</h1> <script> // Declare variables to store personal information let name = "Baitik Baatyr"; let age = 50; let favoriteColor = "Blue"; // Use console.log() to display the information console.log("Name: " + name); // Outputs: Name: Baitik Baatyr console.log("Age: " + age); // Outputs: Age: 50 console.log("Favorite Color: " + favoriteColor); // Outputs: Favorite Color: Blue </script> </body> </html>
Last updated