Startswith returns a boolean of if a string begins with a value
Startswith has the parameter for the value to check if the input starts with it
num = "hello world" log num.startsWith("hello") // true
Last updated 1 year ago