Javascript - module 8 question - words | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

Javascript - module 8 question - words

Goodmornig to everyone. I've not understand why this is not correct. The otuput is equal to reqested. Why this is incorrect? Thanks in advace to all. class Add { constructor(...words) { this.words = words; } //your code goes here print(){ var lunghezza = this.words.length; var stringaFinale = "

quot;; for (var i = 0; i < lunghezza; i++) { stringaFinale = stringaFinale + this.words[i] + "
quot;; } console.log(stringaFinale); } } var x = new Add("hehe", "hoho", "haha", "hihi", "huhu"); var y = new Add("this", "is", "awesome"); var z = new Add("lorem", "ipsum", "dolor", "sit", "amet", ",", "consectetur", "adipiscing", "elit"); x.print(); y.print(); z.print();

5th May 2021, 12:52 PM
Davide Altieri
Davide Altieri - avatar
2 Answers
+ 2
Remove the comma string in var z.
5th May 2021, 1:00 PM
你知道規則,我也是
你知道規則,我也是 - avatar
+ 2
WOW! Thank you @CarrieForle !!! You are great.
5th May 2021, 1:12 PM
Davide Altieri
Davide Altieri - avatar