Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / function-test.js
blob31fbc51bdc4ea7767d2ed072f3acc2979774c276
1 function foo(a) {
2     return typeof(a) == "function";
5 var array = ["string", 5, 6.5, foo, void(0), null, true, false, {f:42}, [1, 2, 3]];
7 var result = 0;
8 for (var i = 0; i < 100000; ++i) {
9     result *= 3;
10     result += foo(array[i % array.length]) | 0;
11     result |= 0;
14 if (result != -738097840)
15     throw "Bad result: " + result;