This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

createOscillator

Summary

Creates an OscillatorNode, a source representing a periodic waveform. It basically generates a constant tone…

Method of apis/webaudio/AudioContextapis/webaudio/AudioContext

Syntax

var  = AudioContext.createOscillator();

Return Value

Returns an object of type

OscillatorNode

Examples

var audioCtx = new AudioContext();
var oscillator = audioCtx.createOscillator();

Related specifications

W3C Web Audio API
W3C Editor’s Draft