Appearance
drop(target, amount)
Removes the first amount characters from target string.
amount
target
drop("hello world", 6); // "world"
pipe("hello world", drop(6)); // "world"