1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 04:42:21 +00:00

Merge pull request #486 from Fifthwolf/patch-3

Update arraybuffer.md
This commit is contained in:
Ruan YiFeng 2017-08-24 10:35:48 +08:00 committed by GitHub
commit 8b3b5f8aca

View File

@ -1069,7 +1069,7 @@ var ia;
onmessage = function (ev) {
ia = ev.data;
console.log(ia.length); // 100000
console.log(ia[37]); // 输出 163因为这是第138个质数
console.log(ia[37]); // 输出 163因为这是第38个质数
};
```