Text Usage
Join Strings
log "hello" + "world"
// joins the two input strings, returning "helloworld"
log "10 + 5 =" + 15
// this will also work and the number will be appended to the string, returning "10 + 5 =15"log "hello" ++ "world"
// joins the two input strings, returning "helloworld"Repeat A String
log "hello" * 3
// returns the string repeated 3 times, "hellohellohello"Last updated