|
<script>
//Adder
//Demonstrates how a computer does math
//made by Norman Duong
//09-18-07
var meal = 22.50;
var tip = meal * .15;
var total = meal + tip;
alert("The meal is $" + meal);
alert("The tip is $" + tip);
alert("Total bill: $" + total);
</script>
|
|