将星号添加到数组?

时间:2019-01-13 17:28:55

标签: javascript

我正在尝试根据元素数量在数组内将元素添加为星号。基本上,如果numberOfRows为3,那么我需要此输出:

let paragraphStyle = NSMutableParagraphStyle()
paragraphStyle.hyphenationFactor = 1.0

let attributedTitle = NSAttributedString(string: "Shooter team", attributes: [NSAttributedString.Key.foregroundColor: UIColor.red, NSAttributedString.Key.paragraphStyle: paragraphStyle])

someLabel.attributedText = attributedTitle

我正在努力使用索引设置星号。谁能指出我正确的方向?非常感谢!

这是我的代码:

[
  '  *  ', 
  ' *** ', 
  '*****'
]

2 个答案:

答案 0 :(得分:1)

尝试这样的事情;

const credentials = {key: privateKey, cert: certificate, passphrase: '??'};

答案 1 :(得分:1)

让它正常工作!这是一个完美的解决方案。

function myFunction(n) {
  let arr = [];
  for(let f = 1; f <= n; f++) {
    arr.push(' '.repeat(n - f) + '*'.repeat(f + f - 1) + ' '.repeat(n - f));
  } 
  return arr;
}

console.log(myFunction(3));