Skip to content

Instantly share code, notes, and snippets.

@brownsmith
Last active February 16, 2018 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brownsmith/4d7b9060b32f78651119e2b345af174a to your computer and use it in GitHub Desktop.
Save brownsmith/4d7b9060b32f78651119e2b345af174a to your computer and use it in GitHub Desktop.
Nokia old style phone, key press array
const keyArray = [
['1'],
['A', 'B', 'C', '2'],
['D', 'E', 'F', '3'],
['G', 'H', 'I', '4'],
['J', 'K', 'L', '5'],
['M', 'N', 'O', '6'],
['P', 'Q', 'R', 'S', '7'],
['T', 'U', 'V', '8'],
['W', 'X', 'Y', 'Z', '9'],
[' ', '0']
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment