public startsWith(prefix as Object) as Boolean:
Returns true if this string starts with the provided value.
When the value is a string, it is tested directly. When the value is a list, each item is tested as a candidate prefix.
True when at least one candidate matches.
assert "Hello World".startsWith(["Hi", "Hello"])