blog icon indicating copy to clipboard operation
blog copied to clipboard

实现(10).add(10).add(10)

Open wuxianqiang opened this issue 4 years ago • 0 comments

Number.prototype.add = function (a) {
  let value = this.valueOf()
  function next(num) {
    value = value + num
    return value
  }
  let result = next(a)
  return result
}

wuxianqiang avatar Mar 29 '20 02:03 wuxianqiang