1 comment

0

I'm not exactly an expert in the field of sound but what's really appealing about this is that you can get a simple but boring generated sound with four lines in a browser console (of most browsers, see http://caniuse.com/#search=web%20audio):

var context = new AudioContext();
var on = context.createOscillator();
on.connect(context.destination);
on.start(0);