feat/eng-123-initializing-project #1

Merged
JohnCosta27 merged 3 commits from feat/eng-123-initializing-project into main 2025-10-12 20:38:49 +01:00

View File

@ -1,5 +1,18 @@
console.log("hello youtube!"); const PERSON = "youtube";

I would have the commit that extracts this into a function, after the feature commit.

I would have the commit that extracts this into a function, after the feature commit.
console.log("another log"); function anotherGreeting() {
console.log("another greeting!");
console.log("yet another greeting!");
console.log("yet yet another greeting!");
}
console.log("yet another log"); function init() {
console.log(`hello ${PERSON}!`);

This should be in a different commit, don't add exclamation mark here

This should be in a different commit, don't add exclamation mark here
console.log("another log!");
console.log("yet another log!");
}
init();
anotherGreeting();