function getfileSize(x) {
var s = ['bytes', 'kB', 'MB', 'GB', 'TB', 'PB'];
var e = Math.floor(Math.log(x) / Math.log(1024));
return (x / Math.pow(1024, e)).toFixed(2) + " " + s[e];
};
728x90
반응형
'Language > Javascript' 카테고리의 다른 글
숫자 구분 기호 (Numeric Separators) (0) | 2024.04.16 |
---|---|
Optional Chaining (0) | 2024.04.15 |
window.open 새탭으로 열기 (0) | 2018.01.11 |