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