Skip to content

Commit 4d4025a

Browse files
committed
scopes
1 parent c9c3344 commit 4d4025a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

javascript-object-oriented/saga.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
var hero = aHero()
2+
var newSaga = function() {
3+
var foil = aFoil();
4+
var saga = function () {
5+
var deed = aDeed();
6+
log(hero+deed+foil);
7+
}
8+
saga()
9+
saga()
10+
}
11+
log(foil)

0 commit comments

Comments
 (0)