Skip to content

Instantly share code, notes, and snippets.

@digitalconceptvisuals
Created July 30, 2020 18:10
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 digitalconceptvisuals/f7a6396a8383983e839083bda488d2b8 to your computer and use it in GitHub Desktop.
Save digitalconceptvisuals/f7a6396a8383983e839083bda488d2b8 to your computer and use it in GitHub Desktop.
// Get key label for given key code of keyboard
function keyLabel(keyCode) {
switch (keyCode) {
case 33:
name = "{PGUP}";
break;
case 45:
name = "{INS}";
break;
case 121:
name = "{F10}"
}
return name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment