belongs to collection: Node.js programming Exercises
How do you use try catch blocks in node.js?
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); }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
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.
need an explanation for this answer? contact us directly to get an explanation for this answer