Function repeat

  • 字符串 repeat

    Parameters

    • str: string

      字符串

    • n: number = 1

    Returns string

    repeat('*'); /// '*'
    repeat('*', 3); /// '***'