Skip to content

Commit 2e4d6df

Browse files
author
Em01
committedMar 17, 2015
more nested functions
1 parent 65ba775 commit 2e4d6df

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎index.html

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@
1515

1616
console.log(decorate(text));
1717
console.log(text);
18+
19+
function decorateMore(t) {
20+
var a = decorate(t);
21+
return '(((' + a + ')))';
22+
}
23+
24+
console.log(decorateMore('Courses'));
25+
1826
</script>
1927
</body>
2028
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.