标签: 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