=== vs == (v3)

Revision 3 of this benchmark created by quemasda quiensoy on


Description

Comparación de === y ==

Test runner

Ready to run.

Testing in
TestOps/sec
===
var j = true;
for (var i = 0; i < 100000; i++) {
  if (j === true) {
    //
  }
}
ready
==
var j = true;
for (var i = 0; i < 100000; i++) {
  if (j == true) {
    //
  }
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.

  • Revision 1: published by Jeremias Menichelli on
  • Revision 3: published by quemasda quiensoy on