1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-29 05:42:20 +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) { onmessage = function (ev) {
ia = ev.data; ia = ev.data;
console.log(ia.length); // 100000 console.log(ia.length); // 100000
console.log(ia[37]); // 输出 163因为这是第138个质数 console.log(ia[37]); // 输出 163因为这是第38个质数
}; };
``` ```