From 266ff0211ea59550820cdadd0d3dd1254f1a1188 Mon Sep 17 00:00:00 2001 From: AKSHAY Date: Fri, 17 Feb 2023 19:46:28 +0530 Subject: [PATCH] Create 1.js --- introduction to js/1.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 introduction to js/1.js diff --git a/introduction to js/1.js b/introduction to js/1.js new file mode 100644 index 0000000..da69208 --- /dev/null +++ b/introduction to js/1.js @@ -0,0 +1,13 @@ +//SINGLE LINE COMMENT + +//filling in the blanks + + console.log("hello world"); + + console.log("%chello world", "color:red; font-size: 100px"); + + +var a = "hello world"; + + +console.log(a) \ No newline at end of file