verdictpicked dog (first-offered)
· classifierA
· tiernone
response (200 chars)
Here's a fun JavaScript example using a `Dog` class:
```javascript
class Dog {
constructor(name, breed) {
this.name = name;
this.breed = breed;
this.energy = 100;
}
bark() {
co