<scripttype="text/javascript"language="javascript">
functionHelloWorld()
{
// Here you can put your code
alert('Welcome to CodingHub');
}
</script>
How to Call: Here I am calling this function in on load event of the page
<body onload ="HelloWorld();">
OutPut