The main formatting function.
format("{}, {}!", "Hello", "world"); // Returns "Hello, world!" Copy
format("{}, {}!", "Hello", "world"); // Returns "Hello, world!"
Format String, e.g. "{}, {}!".
Format arguments, e.g. "Hello" and "world".
The main formatting function.