Hi need help with this code. javascript
This is my code i dont get it to work, i want it to ask the user how is he and depending on the answer alert something, and call the user by the name.
<HTML>
<body>
<script type="text/javascript">
var name=prompt("Hi. Whats your name?")
var mood=prompt("Hi " + name + ". How are you?")
var fine="fine"
var bad="bad"
if mood==fine
alert("Im glad you are fine, " + name)
if mood=bad
alert("Ooo. Thats bad, Im sorry. I hope you get better, " + name)
</body>
</SCRIPT>
</HTML>
|