Formatting
String Formatting
const str = "Use this {0} to format {1}".format("expression", "strings");
// Use this expression to format stringsNumber Formatting
const currencyFormat = wire.format(10000.12, "N1");
// currencyFormat = 10,000.1Custom Formatting
Last updated
Was this helpful?