Skip to content

Commit 11b15c7

Browse files
committed
Update NodeJS.md
1 parent 6e15218 commit 11b15c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NodeJS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// make me serve different files on /foo vs /bar
55
});
66

7-
What is "callback hell" and describe a solution methodology.
7+
What is "callback hell"? Describe a solution methodology.
88

99
How do you handle an unhandled exception in NodeJS? Use the process object to create an exception handler for these.
1010

11-
process.on('uncaughtException', function(err) {
11+
process.on('uncaughtException', (err) => {
1212
console.log('Caught exception: ' + err);
1313
});

0 commit comments

Comments
 (0)