Skip to content

Commit ccc8a89

Browse files
committed
Create 2235-add-two-integers.js
1 parent 704285e commit ccc8a89

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

javascript/2235-add-two-integers.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* @param {number} num1
3+
* @param {number} num2
4+
* @return {number}
5+
*/
6+
var sum = function (num1, num2) {
7+
return num1 + num2; // add num1 and num2 and return it
8+
};

0 commit comments

Comments
 (0)