Compare commits

...

2 Commits

Author SHA1 Message Date
af1b20c433 fix: using constant instead of magic value 2025-10-12 20:24:28 +01:00
6c9f45ff19 feat: adding another user greeting 2025-10-12 20:24:28 +01:00

View File

@ -1,5 +1,11 @@
const PERSON = "youtube";
function anotherGreeting() {
console.log("another greeting!");
}
function init() {
console.log("hello youtube!");
console.log(`hello ${PERSON}!`);
console.log("another log!");
@ -7,3 +13,4 @@ function init() {
}
init();
anotherGreeting();