for (var j=0, new1=""; j<fs.length; j++) {
new1[j] = fs[j];
console.log(new1[j]);
console.log(fs[j]);
}
console.log(fs[j]) // is displaying the value contained in fs.
console.log(new1[j]) // is displaying "undefined" only.
为什么变量fs
在给new1
的值时很害羞?
答案 0 :(得分:1)
我没有使用字符串,而是使用了数组并对其进行了整理。我已经使用push()方法创建了一个数组并在其中添加了字符。 new1.push(FS [J]);