summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/typedarray/typedarrayobject-getelements.js
blob: 98296b1fe19dbbf5d0f1f23576e83ad4a442b60f (plain)
1
2
3
4
5
6
function test() {
    var view = new Uint8Array([72, 101, 108, 108, 111]);
    let s = String.fromCharCode.apply(null, view);
    assertEq("Hello", s);
}
test();