Return * for n number of times


Posted by Christy on 2022-04-19

Description: Write a function that accepts a number n and returns * for n number of times

function star(n) {

}

console.log(star(3)); // ***
function star(n) {
  let result = "";
  for (let i = 1; i <= n; i++) {
    result += "*";
  }
  return result;
}

console.log(star(3));

Be careful about the way of ouput, if it's print -> console.log; if it's return -> return










Related Posts

FAQ 程式設計共學營常見問題

FAQ 程式設計共學營常見問題

[ 筆記 ] JavaScript 進階 01 - 變數性質

[ 筆記 ] JavaScript 進階 01 - 變數性質

遞迴與費氏數列詳解以及時間複雜度探討

遞迴與費氏數列詳解以及時間複雜度探討


Comments