feat/eng-123-initializing-project #1
4
index.ts
4
index.ts
@ -1,3 +1,5 @@
|
||||
const PERSON = "youtube";
|
||||
|
||||
|
||||
function anotherGreeting() {
|
||||
console.log("another greeting!");
|
||||
console.log("yet another greeting!");
|
||||
@ -5,7 +7,7 @@ function anotherGreeting() {
|
||||
}
|
||||
|
||||
function init() {
|
||||
console.log("hello youtube!");
|
||||
console.log(`hello ${PERSON}!`);
|
||||
JohnCosta27
commented
This should be in a different commit, don't add exclamation mark here This should be in a different commit, don't add exclamation mark here
|
||||
|
||||
console.log("another log!");
|
||||
|
||||
|
Reference in New Issue
Block a user
I would have the commit that extracts this into a function, after the feature commit.