我想打印一個字符串,例如: blah
3次,但我想鏈接該函數的字符串。將函數鏈接到要打印的字符串
我現在就做,像這樣:
function repeatMe(number) {
for (var i = 0; i < number; i++) {
document.write('blah');
}
}
console.log(repeatMe(3));
但它有可能調用函數打印blah
像這樣:
console.log('blah'.repeatMe(3));
注意'repeatMe'應*返回一個字符串*,不打印。該函數不被稱爲'printMeTimes'左右。你想叫它像'document.write(repeatMe('blah',3))',*或*'console.log',或者... – Bergi 2014-12-03 11:46:20
不要使用'document.write'。 – Andy 2014-12-03 11:48:19