We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit cc11eb7Copy full SHA for cc11eb7
1.SumOfTwoNumbers.js
@@ -0,0 +1,7 @@
1
+// Create a function that takes two numbers as arguments and return their sum.
2
+
3
+function sumOfTwoNumbers(a, b) {
4
+ return a + b
5
+}
6
7
+console.log(sumOfTwoNumbers(1, 2)) // 3
0 commit comments