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 + + + + +