web api instance property
OscillatorNode: type property
The type property of the OscillatorNode interface specifies what shape of waveform the
oscillator will output. There are several common waveforms available, as well as an
option to specify a custom waveform shape. The shape of the waveform will affect the
tone that is produced.
Value
A string specifying the shape of oscillator wave. The different available values are:
sine- : A sine wave. This is the default value.
square- : A square wave with a duty cycle of 0.5; that is, the signal is “high” for half of each period.
sawtooth- : A sawtooth wave.
triangle- : A triangle wave.
custom- : A custom waveform. You never set
typetocustommanually; instead, use thesetPeriodicWave()method to provide the data representing the waveform. Doing so automatically sets thetypetocustom.
- : A custom waveform. You never set
Also see different oscillator node types for a visualization of the different waveform shapes.
Exceptions
InvalidStateErrorDOMException- : Thrown if the value
customwas specified. To set a custom waveform, just callsetPeriodicWave(). Doing so automatically sets the type for you.
- : Thrown if the value
Examples
The following example shows basic usage of an AudioContext to create
an oscillator node. For an applied example, check out our Violent Theremin demo (see app.js for relevant code).
// create web audio api context
const audioCtx = new AudioContext();
// create Oscillator node
const oscillator = audioCtx.createOscillator();
oscillator.type = "square";
oscillator.frequency.setValueAtTime(440, audioCtx.currentTime); // value in hertz
oscillator.start();
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.