$message
Please use the regular Bookmark Canvas instead.
class User { 93 | constructor(name, email) { 94 | this.name = name; 95 | this.email = email; 96 | this.createdAt = new Date(); 97 | } 98 | 99 | isValid() { 100 | return this.email && this.email.includes('@'); 101 | } 102 | }103 |
35 |
36 | {code}
37 |
38 |
39 |