* @returns {string} */ repeat : function ( str , times ) { if ( times === undefined || times < 1 ) { times = 1 ; } return new Array ( times + 1 ). join ( str ); } ...
確定! 回上一頁