4 Commits

View File

@ -1,5 +1,13 @@
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 world!");
console.log(`hello ${PERSON}!`);
console.log("another log!");
@ -7,3 +15,4 @@ function init() {
}
init();
anotherGreeting();