Returns the first n characters from a string.
When called with one argument, returns the first character. With two arguments, returns the first n characters.
left('Hello World', 5) → 'Hello' left('Hello') → 'H' left('Hi', 10) → 'Hi'