I want to make a function and call that function on the click of a button. There are many guides on the internet to do this but it just didn't work. (I'm a beginner)
<script type = "javascript/text">
var name = function()
name = prompt ("Who are you?", "");
alert ("hello" + " " + name);
</script>
How do i call "name"?
type = "text/javascript"– AlecTMH Jan 28 at 16:47function(). Curly braces aren't required. Sadly JS terminates statements on the end of a line, otherwise it would have been fine. – 11684 Jan 28 at 16:58SyntaxError: Unexpected identifier. The braces are not optional for function declarations/expressions (es5.github.com/#x13). – Felix Kling Jan 28 at 17:51