12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
class Animal {
|
|
constructor(nom) {
|
|
this.nom = nom;
|
|
}
|
|
|
|
crier() {
|
|
console.log(`${this.nom} crie.`);
|
|
}
|
|
}
|
|
|
|
const monAnimal = new Animal("Lion");
|
|
monAnimal.crier(); |