Compare commits

...

3 Commits

View File

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