Html
<html>
<body>
<script>
// call the function
ShowMyText(); // we will see on the screen "Hello"
// declare a function
function ShowMyText()
{
alert("Hello");
}
</script>
</body>
</html>
Html
<html>
<body>
<script>
// call the function
ShowMyText(); // Error! ShowMyText = Undefined
// declare a function
var ShowMyText = function()
{
alert("Hello");
}
</script>
</body>
</html>