Answers for "js should i use try catch"

85

try catch in javascript

try {
  // Try to run this code 
}
catch(err) {
  // if any error, Code throws the error
}
finally {
  // Always run this code regardless of error or not
  //this block is optional
}
Posted by: Guest on June-12-2020
29

javascript try catch

var someNumber = 1;
try {
  someNumber.replace("-",""); //You can't replace a int
} catch(err) {
 console.log(err);
}
Posted by: Guest on June-27-2019
2

js should i use try catch

One should avoid throw errors as the way to pass error conditions
around in applications.

The throw statement should only be used
"For this should never happen, crash and burn. Do not
recover elegantly in any way"

try catch however is used in situation where host objects
or ECMAScript may throw errors.

Example:
-------------------------------------
var json
try {
    json = JSON.parse(input)
} catch (e) {
    // invalid json input, set to null
    json = null
}
-------------------------------------
Posted by: Guest on October-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language