Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 271 Bytes

add.md

File metadata and controls

14 lines (10 loc) · 271 Bytes

Home

ADD

The "add" function get two numbers and return the sum of those two numbers.


Example:

import { add } from '@kenla/functional';

console.log(add(2,5))       // 7
console.log(add(3)(4))      // 7