fix: using constant instead of magic value

This commit is contained in:
2025-10-12 20:17:12 +01:00
parent 35e30aee7d
commit 47bb47ace4

View File

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