var audioctx = new (window.AudioContext || window.webkitAudioContext)();
console.log(audioctx.prototype);
I tried
console.log(typeof(audioctx))
console.log(Object.keys(audioctx))
They return undefined
I wonder since the audioctx is an object, why the methods/function I tried above were all not working.