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);
1 comment
0 u/pminten [OP] 08 Sep 2015 19:45
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):