So let me preface this with the fact that I'm doing this coding in Codecademy so maybe its just that being weird.
I am trying to remove all punctuation from an array (dupBW) and set everything to lowercase.
My code works fine within the forEach, the console.log shows that. But then dupBW is unaffected when I log it out at the end.
Thanks for the help.
dupBW.forEach(dupWord => {
if(puncArray.includes(dupWord[dupWord.length-1])) {
dupWord = dupWord.slice(0, dupWord.length-1);
dupWord = dupWord.toLowerCase();
console.log(dupWord);
}
});
console.log(dupBW.join(' '));
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…