Home of web learners
www.webn3rd.com
javascript use some function to show output
Lets look example below:
<html>
<head>
</head>
<body>
<script>
document.write("Hello");
</script>
</body>
</html>
output:
Hello
Here,we use document.write to show output and inside it we write Hello to show,so the output comes Hello
webn3rd.com
About webn3rd