Skip to content

Commit 1ad0488

Browse files
authored
Update article.md
1 parent cdf8974 commit 1ad0488

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

4-binary/01-arraybuffer-binary-arrays/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ alert(buffer.byteLength); // 16
3131
3232
را می‌دهد `ArrayBuffer` است که تفسیری از بایت‌های ذخیره شده در "eyeglasses" چیزی را در خود ذخیره نمی‌کند. این view یک شی
3333
34-
For instance:
34+
:برای مثال
3535
36-
- **`Uint8Array`** -- treats each byte in `ArrayBuffer` as a separate number, with possible values from 0 to 255 (a byte is 8-bit, so it can hold only that much). Such value is called a "8-bit unsigned integer".
36+
- **`Uint8Array`** -- گفته می‌شود "8-bit unsigned int" با هر بایت در `ArrayBuffer` مانند یک عدد جداگانه برخورد می‌کند که مقادیر مجاز آن از 0 تا 255 است.(یک بایت 8 بیت است پس فقط تا همان مقدار را می‌تواند نگه دارد.). به این مقدار `ArrayBuffer` با هر بایت در
3737
- **`Uint16Array`** -- treats every 2 bytes as an integer, with possible values from 0 to 65535. That's called a "16-bit unsigned integer".
3838
- **`Uint32Array`** -- treats every 4 bytes as an integer, with possible values from 0 to 4294967295. That's called a "32-bit unsigned integer".
3939
- **`Float64Array`** -- treats every 8 bytes as a floating point number with possible values from <code>5.0x10<sup>-324</sup></code> to <code>1.8x10<sup>308</sup></code>.

0 commit comments

Comments
 (0)