CoffeeScript链接功能

时间:2016-11-07 07:38:16

标签: javascript coffeescript

我想通过继承原型

来创建一个链接函数

每次通话都应该使用最后一个链返回

Number::plus = (n) ->
    setTimeout =>
        console.log this + n
    ,1000

1.plus(1).plus(8).plus(90)

预期:

# after 1 sec
> 2
# after 1 sec
> 10
# after 1 sec
> 100

0 个答案:

没有答案