code.ashish.me

Atom feed

Recently added: 128 Longest Consecutive Sequence, 347 Top K Frequent Elements, 045 Jump Game 2, 228 Summary Ranges, 219 Contains Duplicate 2

06 Repeat String

/**
 * Created by Ashish Patel
 * Copyright © 2017 ashish.me
 * ashishsushilpatel@gmail.com 
 */

/**
 * Repeat a given string (first argument) num times (second argument). 
 * Return an empty string if num is not a positive number.
 */

 
function repeatStringNumTimes(str, num) {
    let fullString = "";
    while (num > 0){
        fullString += str;
        num--;
    }
    return fullString;
  }
  
console.log(repeatStringNumTimes("*", 8));

Created 2019-11-24T04:53:20+05:30 · Edit