实现 (5).add(3).minus(2) 功能

如果使用函数怎么实现???
class ReduceNumber{
    constructor(init = 0){
        this.init = init
    }
    add(m){
        this.init += m
        return this
    }
    minus(n){
        this.init -= n
        return this
    }
}

  

posted @ 2023-02-03 13:12  671_MrSix  阅读(15)  评论(0编辑  收藏  举报