Returns a new string with val placed in front of the current string.
val
val — value to prepend (stringified if necessary).
log "world".prepend("hello ") // "hello world"
Last updated 3 months ago