企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 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 ```