I am trying to get my feet wet with AudioContext
and so far I am not able to get a single sound to play.
here is my simple example
var context = new AudioContext()
var o = context.createOscillator()
o.type = "sine"
o.connect(context.destination)
o.start()
From everything I have seen, this should work, but I am not getting any sound. Where am I going wrong?