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 1477d60Copy full SHA for 1477d60
01-create-hello-world-function/index.js
@@ -0,0 +1,7 @@
1
+const createHelloWorld = () => {
2
+ return function (...args) {
3
+ if (args.lenght < 0 && args.length > 20) return;
4
+
5
+ return "Hello World"
6
+ }
7
+}
0 commit comments