I wanted to convert all my numbers to 4 fixed decimal points for that I am using toFixed()
(1456.454534).toFixed()
But in my case I do have some number which are crossing the limit of MAX_SAFE_INTEGER like
11324237868788877767787.676886
In that case if I am using toFixed() it results into loss of precision.How can I handle this number?