Ashok M

JavaScript

What is JavaScript ..?

Javascript is the both scripting as well as programming language

History of Javascript :

Ways to apply javascript or methods to write javascript :

  1. Internal way :

Example :

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Internal JavaScript Example</title>
  </head>
  <body>
    <button onclick="showMessage()">Click Me</button>
    <script>
      function showMessage() {
        alert("Hello from internal JavaScript!");
      }
    </script>
  </body>
</html>

2. External way :

Example :