summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/typeof-array.js
blob: d384dd973eff979bb0962e237069a064d1b07b5e (plain)
1
2
3
4
5
6
7
8
9
function typeOf(o) {
    assertEq(typeof o, "object");
}

typeOf([]);
typeOf(new Float32Array());
typeOf(new Int32Array());
typeOf(new ArrayBuffer());