Skip to main content

Function Call it Self in JAVA SCRIPT

CODING:
<!DOCTYPE html>
<html>
<body>

<p>Functions can be invoked automatically without being called:</p>

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

<script>
(function () {
    document.getElementById("demo").innerHTML = "Hello! I called myself";
})();
</script>

</body>
</html>

Comments