bonjour j'ai le message suivant: Uncaught SyntaxError: Unexpected identifier
voici mon code:
merciCode:
1
2
3
4
5
6
7
8
9
10
11 class Stylo{ constructor(marque){ this.marque=marque; } ecrire() { console.log(`la marque du stylo est ${this.marque}`); } let styl=new Stylo ("bic"); styl.ecrire();