relearning javascript
class HelloWorld {
constructor(hello, world) {
this.words = {“hello”: hello, “world”: world};
}
print() {
console.log(this.words.hello + ‘ ‘ + this.words.world);
}
};(new HelloWorld(‘hello’, ‘world’)).print()
Undescribed Horrific Abuse, One Victim & Survivor of Many Thu, 13 Oct 2022 17:07:01 -0700
relearning javascript
class HelloWorld {
constructor(hello, world) {
this.words = {“hello”: hello, “world”: world};
}
print() {
console.log(this.words.hello + ‘ ‘ + this.words.world);
}
};(new HelloWorld(‘hello’, ‘world’)).print()