Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Created February 28, 2015 19:15
Show Gist options
  • Save Shinpeim/fff016449c65a84073f7 to your computer and use it in GitHub Desktop.
Save Shinpeim/fff016449c65a84073f7 to your computer and use it in GitHub Desktop.
var numberOf = {
"C": 0,
"C#/Db": 1,
"D": 2,
"D#/Eb": 3,
"E": 4,
"F": 5,
"F#/Gb": 6,
"G": 7,
"G#/Ab": 8,
"A": 9,
"A#/Bb": 10,
"B": 11
};
console.log(numberOf["C"]); //0
var tone = "F";
console.log(numberOf[tone]); // 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment