From d18584c38243de789085d9fdf0fe01fa4155e91c Mon Sep 17 00:00:00 2001 From: BrandingLab <122207937+BrandingLab@users.noreply.github.com> Date: Sun, 14 Apr 2024 16:47:51 +0300 Subject: [PATCH 1/2] initial commit passed test --- package-lock.json | 4 ++-- src/00-0-hello-world.js | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index fa6f49d..fe94e8b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "javascript-bae", + "name": "javascript-for-the-webflow-enthusiast-00", "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "javascript-bae", + "name": "javascript-for-the-webflow-enthusiast-00", "version": "1.0.0", "license": "ISC", "devDependencies": { diff --git a/src/00-0-hello-world.js b/src/00-0-hello-world.js index a13b7ca..b7c9d12 100644 --- a/src/00-0-hello-world.js +++ b/src/00-0-hello-world.js @@ -2,6 +2,7 @@ function greet() { // Your Code Here // input: none // output: returns the string "Hello, World!" + return "Hello, World"; } function logWhatsUp() { @@ -9,4 +10,6 @@ function logWhatsUp() { // input: none // output: none // side effect: logs the string "What's up?" to the console + console.log ("What's up?"); + } From 5f524b5832903d8a600cd48827459f7ab9dbacc2 Mon Sep 17 00:00:00 2001 From: BrandingLab <122207937+BrandingLab@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:28:28 +0300 Subject: [PATCH 2/2] initial commit passed the test --- src/00-0-hello-world.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/00-0-hello-world.js b/src/00-0-hello-world.js index b7c9d12..2da6e7d 100644 --- a/src/00-0-hello-world.js +++ b/src/00-0-hello-world.js @@ -2,7 +2,7 @@ function greet() { // Your Code Here // input: none // output: returns the string "Hello, World!" - return "Hello, World"; + return "Hello, World!"; } function logWhatsUp() {