Q:

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

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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now