Q:

How do you use try catch blocks in node.js?

belongs to collection: Node.js programming Exercises

0

How do you use try catch blocks in node.js?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Solution

In the given node.js program, we are using a Try Catch block around the piece of code that tries to read a file synchronously.

var fs = require('fs');
 
try{
    // file not presenet
    var data = fs.readFileSync('demo.html');
} catch (err){
    console.log(err);
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

How do I send an email with node mailer in node.js... >>
<< How do you zip a file in node.js?...