public startsWith(prefixes as IList<String>) as Boolean:
Returns true if this string starts with at least one prefix from the provided list.
True when one of the prefixes matches the beginning of this string.
assert "Hello World".startsWith(["Hi", "Hello"]) assert "Hello World".startsWith(i:["Hi", "Hello"])