用AI赚第一桶💰低成本搭建一套AI赚钱工具,源码可二开。 广告
## add + [link](./add "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L13849 "View in source.") + [npm](https://www.npmjs.com/package/lodash.add "See the npm package.") ``` _.add(augend, addend) ``` 相加两个数 ### 参数 1. augend (number) 相加的第一个数 2. addend (number) 相加的第二个数 ### 返回值 (number) 返回总和 ### 示例 ``` _.add(6, 4); // => 10 ```