Advertisement
Guest User

Untitled

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