using javascript to implement a deck of cards
currently included:
- card object
- hand object
- deck object
- drawing of card from deck into hand
- finding a poker hand in a hand of 5 cards
- compare between two poker hands and declare winner/tie
todo:
- need to move functions into objects where appropriate, for example, finding the hand value could go into the hand object
- need to implement tiebreakers for various poker hands
- create an interface, such as website with this running as the backend