Uint8Array Performance (read)
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var n = 256;
var arr = new Array(n);
var i32a = new Int32Array(n);
var ui8a = new Uint8Array(n);
for (var i = 0; i < n; i++) {
arr[i] = 1;
i32a[i] = 1;
ui8a[i] = 1;
};
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Normal Array |
|
pending… |
Int32 Array |
|
pending… |
Uint8 Array |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by sou
- Revision 2: published
- Revision 3: published
- Revision 4: published
- Revision 5: published by Chris Khoo
- Revision 6: published by Walter
0 comments