From 6eb7f9e607eb2d2f1b337769b7f1c6dc9b5d3064 Mon Sep 17 00:00:00 2001 From: Taylor Tinnes Date: Sat, 25 May 2024 23:15:26 -0500 Subject: [PATCH 1/2] git status git status On branch main Your branch is ahead of 'origin/main' by 1 commit. (use "git push" to publish your local commits) Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git restore ..." to discard changes in working directory) modified: hello.js Untracked files: (use "git add ..." to include in what will be committed) package-lock.json no changes added to commit (use "git add" and/or "git commit -a git add. Git status --- .DS_Store | Bin 0 -> 6148 bytes hello.js | 4 +--- package-lock.json | 24 ++++++++++++++++++++++++ 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 .DS_Store create mode 100644 package-lock.json diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..c32700a265d4f5957e22189af2f221b8436a40d7 GIT binary patch literal 6148 zcmeHKF;2r!47DLcB$keh{{%?A!KVr*=mk)zRFE3df$rH@H~}~51$qEZz$ut{wm&FQ zR7M7Pmi%A7?U$dtA&x~v7yI>GWF{gt+)$ovnVRLzCw5jM6;SOS+s%A=*R{Jz<>`QN zE4h-5Jjm0S|MEJ_wO!M!w%rP``s3~J*y{0moL~Q#-`x+MP2WMKQ2{DI1*iZO_?HTx zXPea*fn2Eo6`%s&3fT7{!3}f4KF~iMSbPKk+HbrYu6>pOCJO*_!9EZXmTfl?qUSu>$9@omv0CfuETF$0Y8k02TOC z3TV|Vn+0B}^w!DCS+7m-Tlklu*2}SYD+YQi#>QIl<)ALvHS)P&ALw+%oet!WfayY` I0>7caCtIy5$p8QV literal 0 HcmV?d00001 diff --git a/hello.js b/hello.js index 6f10866..c01f5b3 100644 --- a/hello.js +++ b/hello.js @@ -4,12 +4,10 @@ Enter your code on line 7 to print 'Hello, World!' to the console (the panel on the right) */ -console.log("Hello"); - +console.log('Hello, World!') /* Next, PLAY! Modify your code on line 7 to try to accomplish the tasks listed below: - 1. Change the message that is printed. 2. Figure out what the parentheses do. Will the code work without them? 3. Remove one or both quotation marks. Do we need to include both opening and closing quote marks? Is there a difference between using a single or a double quote (' vs. ")? diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..bab5a83 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,24 @@ +{ + "name": "hello-world", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "hello-world", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "readline-sync": "^1.4.10" + } + }, + "node_modules/readline-sync": { + "version": "1.4.10", + "resolved": "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.10.tgz", + "integrity": "sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==", + "engines": { + "node": ">= 0.8.0" + } + } + } +} From bcd8306e5b236543e944268c82d0267b4c1e4cfe Mon Sep 17 00:00:00 2001 From: Taylor Tinnes Date: Tue, 4 Jun 2024 15:55:08 -0500 Subject: [PATCH 2/2] added .DS_Store to .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 30bc162..90157b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/node_modules \ No newline at end of file +/node_modules +.DS_Store \ No newline at end of file