Friday, October 17, 2014

Write A User Define Function with no argument and no return value using javascript.


Write A User Define Function with no argument and no return value using javascript.
Code : udf.html
<html>
<body>
<script type="text/javascript">
function print()
{
document.write("Hello");
}
print();
</script>
</body>
</html>

No comments: