Transpose a note by a number of perfect fifths.
the transposed note name
import { transposeFifths } from "../note"transposeFifths("G4", 1) // => "D"[0, 1, 2, 3, 4].map(fifths => transposeFifths("C", fifths)) // => ["C", "G", "D", "A", "E"] Copy
import { transposeFifths } from "../note"transposeFifths("G4", 1) // => "D"[0, 1, 2, 3, 4].map(fifths => transposeFifths("C", fifths)) // => ["C", "G", "D", "A", "E"]
Transpose a note by a number of perfect fifths.