From 5d3e2395b2efb41f4561a9c4baf0bd9fee17c2e7 Mon Sep 17 00:00:00 2001 From: shehrozirfan Date: Sun, 3 Oct 2021 21:33:30 +0500 Subject: [PATCH] Hello world in JavaScript --- JavaScript/README.md | 8 ++++++++ JavaScript/app.js | 2 ++ JavaScript/index.html | 12 ++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 JavaScript/README.md create mode 100644 JavaScript/app.js create mode 100644 JavaScript/index.html diff --git a/JavaScript/README.md b/JavaScript/README.md new file mode 100644 index 0000000..b950866 --- /dev/null +++ b/JavaScript/README.md @@ -0,0 +1,8 @@ +# PREREQUISITE + ============ +1. Must have a browser of your choice(Google chrome, Firefox etc) + +# RUN + === +1. Open the index.html file +2. You see the hello world on browser screen. diff --git a/JavaScript/app.js b/JavaScript/app.js new file mode 100644 index 0000000..4770590 --- /dev/null +++ b/JavaScript/app.js @@ -0,0 +1,2 @@ +console.log("Hello World!"); +document.write("Hello World!"); diff --git a/JavaScript/index.html b/JavaScript/index.html new file mode 100644 index 0000000..2d6c61e --- /dev/null +++ b/JavaScript/index.html @@ -0,0 +1,12 @@ + + + + + + + Say Hello using JavaScript + + + + +