.content
和noiseWords
是由字符串组成的数组。我的目标是从noiseWords
中删除content
。 content
和noiseWords
都不是全局变量。我可以访问noiseWords
中的word()
吗?第4行正确吗?如果没有,那么如何在noiseWord
内部访问word()
?
word(content){
// this function remove noiseWords from the Content
//and then return the content
noiseWords.split(/\s+/).map((w) =>
normalize(w));//line4
}
addNoiseWords(noiseWords){
//this function consists noisewords
}
答案 0 :(得分:1)
我可以在word()中访问noiseWords吗?
否
第4行正确吗?如果没有,我如何在word()中访问noiseWord?我在代码中提到了“第4行”。
您需要将该数组作为函数word()
中的参数传递,例如:
function word(content, noiseWords){...}
或传递具有这些值的对象:
function word(obj){
var {content, noiseWords} = obj;
.
.
.
}
或使用这些值传递数组:
function word(array){
var [content, noiseWords] = array;
.
.
.
}