repeat

Description

Repeats the given string some number of times.

Syntax

repeat( string, count )

Examples
 repeat("hello", 2) //returns "hellohello"
 repeat("hello", 0) //returns ""