We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e15218 commit 11b15c7Copy full SHA for 11b15c7
NodeJS.md
@@ -4,10 +4,10 @@
4
// make me serve different files on /foo vs /bar
5
});
6
7
-What is "callback hell" and describe a solution methodology.
+What is "callback hell"? Describe a solution methodology.
8
9
How do you handle an unhandled exception in NodeJS? Use the process object to create an exception handler for these.
10
11
- process.on('uncaughtException', function(err) {
+ process.on('uncaughtException', (err) => {
12
console.log('Caught exception: ' + err);
13
0 commit comments