Advertisement
Guest User

Untitled

a guest
May 25th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. var pointsMap = {
  2. 0: 'Love-All',
  3. 1: 'Fifteen-All',
  4. 2: 'Thirty-All'
  5. };
  6.  
  7. function callTie(points) {
  8. if (points < 3) {
  9. return pointsMap[points];
  10. }
  11. return 'Deuce';
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement