JavaScript 101 -JavaScript Comments

Поделиться
HTML-код
  • Опубликовано: 15 ноя 2020
  • JavaScript Comments
    //Change heading:
    document.getElementById("myH").innerHTML = "My First Page";
    // Change paragraph:
    document.getElementById("myP").innerHTML = "My first paragraph.";
    /*
    document.getElementById("myH").innerHTML = "Welcome to my Homepage";
    document.getElementById("myP").innerHTML = "This is my first paragraph.";
    */
    document.getElementById("myP").innerHTML = "The comment-block is not executed.";

Комментарии •