diff --git a/Javascript/simple-not-simple-nm.js b/Javascript/simple-not-simple-nm.js new file mode 100644 index 0000000..2e00007 --- /dev/null +++ b/Javascript/simple-not-simple-nm.js @@ -0,0 +1,13 @@ +function say() { + return 'Hello'; + } + + function world() { + return 'World'; + } + + function exclamation() { + return '!'; + } + + console.log(say() + ' ' + world() + exclamation()); \ No newline at end of file