Files
scrabble-online/client/board.js
2021-03-20 21:54:24 +00:00

19 lines
253 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'
};