Files
Node.js-14-Cookbook/Chapter02/working-with-files/callback-hell.js
T
2020-05-19 12:17:36 +01:00

6 lines
98 B
JavaScript

first(args, function () {
second(args, function () {
third(args, function () {});
});
});