~Chao Li~

~Kumo no Mukou, Yakusoku no Basho~

 
~~~~

<html>
<head>
<titel>simple</title>
</head>

<script>

var userName = " ";
var rightAnswer = "Chao";

userName = prompt ("What's my name?");

if (userName == rightAnswer)
{
alert ("Your magnificant!!");
}

else if (userName == "Jack")
{
alert ("We much be friends.");
}

else
{
alert ("Your a dork.");
}

</script>
</html>

 
 
 
~~~~