class Card{ constructor(color, number, shape, filling){ this.color=color; this.number=number; this.shape=shape; this.filling=filling; } numberOfSet(listCards){ console.log('TODO'); } verifSet(listCards){ console.log('TODO'); } }