
previous

page 4
next
The Road Ahead

We are aiming to find sets of 4 words that will be usable in the game.
Note that the letters in each set of coloured cells are different:
* the corners;
* the letters in the 2nd position; and
* the letters in the 3rd position.
Ultimately we want a word4_sets.js file which looks like this:
var words4_sets=[
['GOLF','GRIT','FUEL','TEAL'],
...
['BAGS','BRAN','SURE','NOSE']
];
['GOLF','GRIT','FUEL','TEAL'],
...
['BAGS','BRAN','SURE','NOSE']
];
Study all of the above carefully - we need a clear idea of what we are trying to achieve. It's not hard but I found it tricky. You'll have the benefit of my having gone before!
make_word4_sets.html
Create this file and add to it what you think we need so far.
previous
next