Pruebas de rendimiento de funciones

Benchmark created on


Setup

let colores = ['Blanco', '##', 'Rojo', '##', 'Verde', '##', 'Azul', 'Amarillo', 'Gris', '##'];

//  Función nombrada:
function removerElementos(elemento) {
    return elemento !== '##';    
}

Test runner

Ready to run.

Testing in
TestOps/sec
Prueba 1
//  Invocación de filter() con la función nombrada:
let resultado1 = colores.filter(removerElementos);
ready
Prueba 1
// Invocación de filter() con una función anónima:
let resultado2 = colores.filter(function(elemento){
    return elemento !== '##'; 
})
ready

Revisions

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