add
最后更新于:2022-04-02 00:03:45
## 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
```
';