A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

How do you use try catch blocks in node.js?
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?...