Files
scrabble-online/client/board.js
2021-03-20 22:50:55 +00:00

16 lines
250 B
JavaScript

// traverse HTML and fill in table
const BoardLookup = {
'3LS': 'x3 Letter Score',
'2LS': 'x2 Letter Score',
'3WS': 'x3 Word Score',
'2WS': 'x2 Word Scre',
'★': 'x2 Word Score'
};
const BoardLocations = {
'A1': '2WS'
};