This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Public: Duplicate some text an arbitrary number of times. | |
| // | |
| // text - The String to be duplicated. | |
| // count - The Integer number of times to duplicate the text. | |
| // | |
| // Examples | |
| // | |
| // multiplex('Tom', 4) | |
| // # => 'TomTomTomTom' | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> |