Я создаю JavaScript class
, как показано ниже:
class contact{
constructeur(nom,prenom){
this.nom = nom;
this.prenom = prenom;
}
function afficher(){
return "Nom : " + this.nom + "Prenom : " + this.prenom;
}
...
Но у меня есть ошибка в jslint Excepted an identifier saw 'class'
И в eslint выдает ошибку на the keyword 'Class' is reserved