Compare commits

...

2 Commits

Author SHA1 Message Date
2ac458dd37 fix: using constant instead of magic value 2025-10-12 20:22:47 +01:00
2d2a3e382b feat: adding another user greeting 2025-10-12 20:22:20 +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();