David,
Simplest way to find exception is to wrap your calculations with try{}catch statement
try {
......... YOUR CODE GOES HERE .....
} catch (ex){
console.log( " Calculation Exception="+ex);
}
David,
Simplest way to find exception is to wrap your calculations with try{}catch statement
try {
......... YOUR CODE GOES HERE .....
} catch (ex){
console.log( " Calculation Exception="+ex);
}