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