javaScript链式调用

// 链式调用 const line = { init(val){ this.val = val; return this; }, add(next){ this.val += next; return this; },
相关文章
相关标签/搜索