From 834272a18f2d0903ff0ae5ccb10d6bfbdb6bb853 Mon Sep 17 00:00:00 2001 From: neillpatterson Date: Wed, 24 Apr 2019 23:25:32 -0700 Subject: [PATCH] added happy_birthday.js --- happy_birthday.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 happy_birthday.js diff --git a/happy_birthday.js b/happy_birthday.js new file mode 100644 index 0000000..346dc7f --- /dev/null +++ b/happy_birthday.js @@ -0,0 +1,7 @@ +let marina_age = 29 // update in 2020 + +var i = 0 +for (i=1; i<=marina_age; i=i+1) +{ +console.log("Happy " + marina_age + "th birthday!"); +}