format(format_string [, arguments...] ) â string
Instance Public methods
Returns the string resulting from applying format_string to any
additional arguments. Within the format string, any characters other than
format sequences are copied to the result.
The syntax of a format sequence is follows.
%[flags][width][.precision]type
A format sequence consists of a percent sign, followed by optional flags,
width, and precision indicators, then terminated with a field type
character.