phaser - v4.0.0-rc.4
    Preparing search index...
    • Takes a string and replaces instances of markers with values in the given array. The markers take the form of %1, %2, etc. I.e.:

      Format("The %1 is worth %2 gold", [ 'Sword', 500 ])

      Parameters

      • string: string

        The string containing the replacement markers.

      • values: any[]

        An array containing values that will replace the markers. If no value exists an empty string is inserted instead.

      Returns string