script.js 780 B

12345678910111213141516
  1. // ------------------switch: if ------------------------------------
  2. let color = prompt("Enter text","");
  3. if (color === "red") {
  4. document.write("<div style='background-color: red;'>red</div>");
  5. document.write("<div style='background-color: black; color: white;'>black</div>");
  6. } else if (color === "black") {
  7. document.write("<div style='background-color: black; color: white;'>black</div>");
  8. } else if (color === "blue") {
  9. document.write("<div style='background-color: blue;'>blue</div>");
  10. document.write("<div style='background-color: green;'>green</div>");
  11. } else if (color === "green") {
  12. document.write("<div style='background-color: green;'>green</div>");
  13. } else {
  14. document.write("<div style='background-color: gray;'>I can't understand</div>");
  15. }