Hi guys I have bytes say 007458415820874584158208042423283712
.I want to convert this into GB, so tried to divide it by 1048576
i am getting a result of 7.112899609446129e+27
. I want only the two numbers after the decimal point, so I have used .toFixed like below. It doesn't work, I am getting the same response as if I have not used the toFixed function. I just want the result to be just 7.1. help me out on this.
console.log((007458415820874584158208042423283712/1048576).toFixed(2));