From 61415a6aa95602c8adbaae142299f7734bc0b148 Mon Sep 17 00:00:00 2001 From: Yuriy Ivanenko Date: Mon, 6 May 2024 09:36:27 -0400 Subject: [PATCH] Passed all tests --- index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.js b/index.js index 96427a583..8ff049f9a 100644 --- a/index.js +++ b/index.js @@ -1 +1,6 @@ // Write your code in this file! +const currentUser = 'Grace Hopper'; +const welcomeMessage = `Welcome to Flatbook, ${currentUser}!`; +const excitedWelcomeMessage = welcomeMessage.toUpperCase(); + +const shortGreeting = `Welcome, ${currentUser.slice(0,1)}!`; \ No newline at end of file