Javascript last lesson | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Javascript last lesson

Anyone can help me in last javascript last module in javascript section You are making a text encryptor. It should take multiple words and output a combined version, where each word is separated by a dollar sign $. For example, for the words "hello", "how", "are", "you", the output should be "$hello$how$are$you

quot;. The given code declares a class named Add, with a constructor that takes one rest parameter. Complete the code by adding a print() method to the class, which should generate the requested output. Note, that the dollar sign is placed at the beginning and at the end of the output. class Add { constructor(...words) { this.words = words; } //your code should be here } 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();

20th Dec 2021, 2:21 PM
Satrio Utomo
2 Answers
+ 1
What is last in last JavaScript? What is last JavaScript?
20th Dec 2021, 2:29 PM
A͢J
A͢J - avatar