Réponse
function Cercle(rayon, nom) {
this.rayon = rayon;
this.nom = nom;
}
Colonne
Question
Syntaxe pour créer un constructeur de Cercle qui attend en paramètre "rayon" et" nom"
Thématique