We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c3344 commit 4d4025aCopy full SHA for 4d4025a
javascript-object-oriented/saga.js
@@ -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
10
+}
11
+log(foil)
0 commit comments