kopia lustrzana https://github.com/c9/core
15 wiersze
217 B
JavaScript
15 wiersze
217 B
JavaScript
![]() |
function simpleFunction() {
|
||
|
}
|
||
|
|
||
|
function simpleFunctionNested(a, b) {
|
||
|
function nested(c) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
(function() {
|
||
|
var someFunction = function(a, b) {
|
||
|
};
|
||
|
|
||
|
someFunction.bla = function() {
|
||
|
};
|
||
|
})();
|