Skip to content

Commit 1477d60

Browse files
committed
feat: add function create hello world
0 parents  commit 1477d60

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: 01-create-hello-world-function/index.js

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)