Text Usage
Join Strings
log "hello" + "world"
// joins the two input strings using a space, returning "hello world"
log "10 + 5 =" + 15
// this will also work and the number will be appended to the string with a spacelog "hello" ++ "world"
// joins the two input strings, returning "helloworld"Remove From String
log "hello world" - " world"
// removes the string " world" from "hello world", returning "hello"Repeat A String
Last updated