repeat
Description
Repeats the given string some number of times.
Syntax
repeat( string, count )
Examples
repeat("hello", 2) //returns "hellohello" repeat("hello", 0) //returns ""Repeats the given string some number of times.
repeat( string, count )
repeat("hello", 2) //returns "hellohello" repeat("hello", 0) //returns ""