Edit This Code:
<!DOCTYPE html>
<html>
<body>

<p>A function can access variables defined outside the function:</p>

<button type="button" onclick="myFunction()">Click Me!</button>

<p id="demo"></p>

<script>
var a = 4;
function myFunction() {
    document.getElementById("demo").innerHTML = a * a;
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy