Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript Storing Single Values</title> </head> <body> <script> // Creating variables let color1 = "Red"; let color2 = "Green"; let color3 = "Blue"; // Printing variable values document.write(color1 + "<br>"); document.write(color2 + "<br>"); document.write(color3); </script> </body> </html>