Compare commits

..

1 Commits

Author SHA1 Message Date
47bb47ace4 fix: using constant instead of magic value 2025-10-12 20:17:12 +01:00

View File

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