Get sorted notes with duplicates removed. Pitch classes are listed before notes.
unique sorted notes
Array.sortedUniqNoteNames(['a', 'b', 'c2', '1p', 'p2', 'c2', 'b', 'c', 'c3' ])// => [ 'C', 'A', 'B', 'C2', 'C3' ] Copy
Array.sortedUniqNoteNames(['a', 'b', 'c2', '1p', 'p2', 'c2', 'b', 'c', 'c3' ])// => [ 'C', 'A', 'B', 'C2', 'C3' ]
Get sorted notes with duplicates removed. Pitch classes are listed before notes.