Test if a given pitch class set includes a note
the base set to test against
true if the note is included in the pcset
Can be partially applied
const isNoteInCMajor = isNoteIncludedIn(['C', 'E', 'G'])isNoteInCMajor('C4') // => trueisNoteInCMajor('C#4') // => false Copy
const isNoteInCMajor = isNoteIncludedIn(['C', 'E', 'G'])isNoteInCMajor('C4') // => trueisNoteInCMajor('C#4') // => false
Test if a given pitch class set includes a note