자바스크립트 KB 를 MB로 변환하는 함수

자바스크립트 KB 를 MB로 변환하는 함수

1
2
3
4
5
function byteConvertor(bytes) {
var e = Math.floor(Math.log(bytes)/Math.log(1024));
if(e == "-Infinity") return 0;
else return (bytes/Math.pow(1024, Math.floor(e))).toFixed(2);
}
Share