This file contains hidden or 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>Shuffle</title> | |
| <script> | |
| //BUILD DECK | |
| var suit = ["Hearts", "Spades", "Clubs", "Diamonds"]; // Create the suit array | |
| var face = ["Ace", "1", "2", "3", "4", "5", "6", "7", // Creat face array | |
| "8", "9", "10", "Jack", "Queen", "King"]; | |
| //GENERATE RANDOM VALUES FOR 5 DIFFERENT CARDS |
NewerOlder