if then else

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
1
value = "asd";      
  if (value == '') {
            return true;
        } else {
            return false;
        }
ready
2
value = "asd";      
  return (value == '')? true: false;
ready

Revisions

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