6 lines
98 B
JavaScript
6 lines
98 B
JavaScript
first(args, function () {
|
|
second(args, function () {
|
|
third(args, function () {});
|
|
});
|
|
});
|