Are there methods in JavaScript for generating sound with varying frequencies?
I've managed to use WebAudio to produce sounds with single frequencies.
var osc = audioContext.createOscillator();
osc.frequency.value = 440; //Single frequency
However, I'm looking to create a sound wave with multiple frequencies. Is this achievable?