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!"); +}