Tutorial-BootStrap

JavaScript

JavaScript is a programming language of HTML and the web.

Why Learn JavaScript?

Example

<!DOCTYPE html>
<html>
  <body>
    <h2>Hello JavaScript</h2>

    <button
      type="button"
      onclick="document.getElementById('dateLabel').innerHTML = Date()"
    >
      Click me to display Date and Time.
    </button>

    <p id="dateLabel"></p>
  </body>
</html>

W3Schools

W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and basic understanding. Tutorials, references. Sharpen your skills in HTML, CSS and JavaScript using W3Schools guides.