x
 
<!DOCTYPE html>
<html>
<body>
<script>
    //Anonymous function with no identifier for function.
    var onload = function(){
        document.write("This text has been created with anonymous function while ONLOAD");
        
    }();
</script>
</body>