■ByteからKByteへ変換
ByteからKByteへ変換するには1024で割ればよい。
1024 Byte = 1 KByte
function Byte_to_KByte(n) { return n / 1024; }
[目次に戻る]