Hi.
I’ve searched high and low, but I think this must be pretty easy to do, just not sure how. I can do it now, but it simply isn’t elegant enough for my tastes.
var n:Array = [“C”,“C#”,“D”,“D#”,“E”,“F”,“F#”,“G”,“G#”,“A”,“A#”,“B”];
var Notes:Array=n.concat(n,n,n,n,n,n,n,n,n,n,n,n)
Is there a more efficent way to do this? Like a for loop, or something that I can add to concat to simplfy it?