<html>
<head>
</head>
<body>
<script>
var myFunction = function(){
return "hello world";
}
</script>
myFunction();
</body>
</html>
I just finished the code academy course on javascript but it didn't taught me how to code javascript inside html. I need to display hello world inside the html's tag using the function is this possible? my friend told me I need jquery just to do this.