From 3c9155aa466763b34d60ba3ccf952f29b2704be1 Mon Sep 17 00:00:00 2001 From: Aarya-T Date: Sun, 20 Oct 2024 14:11:11 +0530 Subject: [PATCH] Add files via upload --- aarya.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 aarya.js diff --git a/aarya.js b/aarya.js new file mode 100644 index 0000000..a7fb1d8 --- /dev/null +++ b/aarya.js @@ -0,0 +1,14 @@ +// Hi This is the main file +function helloWorld() { + console.log("Hello World"); + } + + helloWorld(); + + function printName(name) { + console.log("Hello " + name); + } + + printName("John Doe"); + + printName("Aarya Tambde"); \ No newline at end of file