Untitled
Anonymous
plain_text
06/19/2023 3:21 PM
324 B
18
Indexable
class User {
constructor(name, age, email, address) {
this.name = name;
this.age = age;
this.email = email;
this.address = address;
}
}
// Usage
const user = new User("John Doe", 30, "[email protected]", "123 Main St");Editor is loading...