Skip to content

Instantly share code, notes, and snippets.

@Phrogz
Created December 21, 2010 04:51
Show Gist options
  • Save Phrogz/749509 to your computer and use it in GitHub Desktop.
Save Phrogz/749509 to your computer and use it in GitHub Desktop.
var versionByLevelAndDigits = {
L : {
41 : 1,
77 : 2,
127 : 3
},
M : {
34 : 1,
63 : 2,
101 : 3
}
};
var version = versionByLevelAndDigits["L"][77];
// 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment