fn-expression-vs-statement (v34)

Revision 34 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Expression
leerArchivo: function(archivo, callback){                       
                        var contentFile = fs.readFileSync(archivo, 'utf8');
                        callback(contentFile);
                }
ready
Statement
 function leerArchivo(archivo, callback){                       
                        var contentFile = fs.readFileSync(archivo, 'utf8');
                        callback(contentFile);
                }
ready

Revisions

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