Function Time

  • Create a TimeClass from a time string or number. The time is computed against the global Tone.Context. To use a specific context, use TimeClass

    Parameters

    • Optional value: TimeValue

      A value which represents time

    • Optional units: TimeBaseUnit

      The value's units if they can't be inferred by the value.

    Returns TimeClass<Seconds>

    Example

    const time = Tone.Time("4n").toSeconds();
    console.log(time);

    Example

    const note = Tone.Time(1).toNotation();
    console.log(note);

    Example

    const freq = Tone.Time(0.5).toFrequency();
    console.log(freq);