12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
/**
|
|
* Add two numbers
|
|
* @customfunction
|
|
* @param {number} first First number
|
|
* @param {number} second Second number
|
|
* @returns {number} The sum of the two numbers.
|
|
*/
|
|
function add(first, second) {
|
|
return first + second
|
|
}
|
|
add(1, 2)
|