This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>Address Book</title></head> | |
<body> | |
<script type="text/javascript"> | |
var contacts = []; | |
function printPerson (person) { | |
document.write("First Name is: " + person.firstName) | |
document.write("</br>Last Name is: " + person.lastName) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>Blackjack</title></head> | |
<body> | |
<script type="text/javascript"> | |
document.write ("This is Balckjack game.</br>"); | |
document.write ("The points are as follow:</br>"); | |
document.write ("Ace(1) = 11.</br>"); | |
document.write ("King(12), Queen(11) and Prince(10) = 10.</br>"); | |
document.write ("The rest by their own number values.</br></br>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><title>cashRegister</title></head> | |
<body> | |
<script type="text/javascript"> | |
function StaffMember(name,discountPercent){ | |
this.name = name; | |
this.discountPercent = discountPercent; | |
} |
OlderNewer