2022-05-19

305 阅读1分钟

以下代码段的输出结果为:

String.prototype.getName = () => {
    return 'lose'
}
const name = 'win'
console.log(name.getName())