Advertisement
Guest User

Untitled

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