Comparing-primitive-to-object-string-numbers
JavaScript performance comparison
Info
Verifies if adding a string to a number, is faster when the string is of a primitive string type, or a String object.
Preparation code
str1 + str3 = <div id="id1"></div><br>
str2 + str3 = <div id="id2"></div>
<script>
Benchmark.prototype.setup = function() {
var str1 = "Hello";
var str2 = new String("Hello");
var str3 = new String(" there");
var i = "(idle)",
k = "(idle)";
};
Benchmark.prototype.teardown = function() {
var x = document.getElementById("id1"); x.innerHTML = i;
var y = document.getElementById("id2"); y.innerHTML = k;
};
</script>
Preparation code output
str1 + str3 =
str2 + str3 =
str2 + str3 =
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Primitive and number |
|
pending… |
Object and number |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments