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.
1 parent ccc40b8 commit 9d494e8Copy full SHA for 9d494e8
ECMAScript/A06-Function/define.js
@@ -0,0 +1,5 @@
1
+function add(a, b){
2
+ console.log("a+b: "+(a+b));
3
+ return a+b;
4
+}
5
+add(1, 2);
0 commit comments