class Card{ constructor(){} /** * * @returns all attributes of a card */ getAttributes(){} /** * * @param {*} card card to be compared with the current obj * @returns boolean */ equals(card){} }//export {Card}