Skip to content
Prev Previous commit
Next Next commit
step2-1
  • Loading branch information
EliaYazdi committed Aug 15, 2019
commit 63a43128527e00c75feb4f808a144875fb6feb04
10 changes: 6 additions & 4 deletions Week3/homework/step2-1.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
'use strict';

function foo() {
function foo(bar) {
function bar() {
console.log('Hello, I am bar!');
}

console.log('Week3');
}

function bar() {
console.log('Hello, I am bar!');
}



foo(bar);


Expand Down