Equality operators
JavaScript performance comparison
Info
Test for == and === with the same/diff operand types.
Preparation code
<script>
var baz0 = "12",
baz1 = "12",
buz0 = "13",
obj0 = { 'foo' : 'bar' },
obj1 = obj0,
obk0 = { 'bar' : 'foo' };
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Equal strings |
|
pending… |
Non-equal strings |
|
pending… |
Equal objects |
|
pending… |
Non-equal objects |
|
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 Dmitry A. Soshnikov
- Revision 4: published by Kyle Simpson
- Revision 6: published
- Revision 9: published
- Revision 10: published by Tobias Reiss
- Revision 11: published by Matthew Robb
- Revision 12: published
- Revision 13: published by Terry Anastasiadis
0 comments