王一凡 & 于佳慧
2025年3月25日
倩倩&EG 祝福

/** * @description 祝福你们的爱情 * @param {string} he - 王一凡 * @param {string} she - 于佳慧 * @date 2025-03-25 */ class Marriage { constructor(he, she) { this.love = `${he} ❤️ ${she}`; } forever() { return `愿你们的爱情像这段代码一样,永远不会出错!`; } } const couple = new Marriage('王一凡', '于佳慧'); console.log(couple.forever());