console.log(mathjs.evaluate("(goodCount/(goodCount+reject_count))>0.99", {
goodCount: 0,
reject_count: 0,
Total_Planned_time: 10
}))
my problem is that if goodCount & reject_count zero this function return NaN but I want Either true or false by function so can you suggest how to write condition if NaN value came it return true.
Thanks in advance