私は '1'の文字列値を受け取り、それに '0'を加えるこの関数を持っています。関数を何回ループするか?
問題は、設定した回数だけ機能を使いたいということです。 つまり、数値が '1' '0' '1' '0' '1' '0'になり、結合関数を使用して1つの値として配列に格納されるように、6回移動します。
alert(stringy());
//write a function that names stringy
function stringy(size) {
//create and empty array to hold new value
var num = []
//push a the string value of 1 into array
num.push('1')
//loop through the array and if the variable equals 1 then push a 0
for (i = 0; i < num.length; i++) {
if (num[i] == '1') {
num.push('0')
//if num has 0 in in it push 1
} else if (num[i] == '0') {
num.push('1')
}
//numbers return two values in array but does not specify how many goes in.
return num.join();
} //incomplete: only shows '1,0' in output one time.
}
'リターンnum.joinを();' 'for'ループの外。今すぐループの最初の反復の最後に戻って – tymeJV