value property

double value

The Web Audio API's AudioParam property value gets or sets the value of this AudioParam at the current time. Initially, the value is set to AudioParam.defaultValue.

Setting value has the same effect as calling AudioParam.setValueAtTime with the time returned by the AudioContext's BaseAudioContext.currentTime property.

Implementation

double get value;
void value=(num value)

Implementation

set value(num value);