Latest Benchmarks

Browse the latest JavaScript performance benchmarks created by the community.

testing my code

just a test

while and replace vs split and join

testing some codes

addtion operator vs plus

No description provided

addition operator bracket

No description provided

getEventGroups

No description provided

Array ForEach vs Find vs for loop (2)

No description provided

Array ForEach vs Find vs for loop

No description provided

Array ForEach vs Find

No description provided

Date vs moment with compare

No description provided

Date vs moment 1238uu

No description provided

Some vs. indexOf vs. includes vs. find

No description provided

Creating/adding html element performance (5 elements)

No description provided

Creating/adding html element performance (10 elements)

No description provided

Creating/adding html element performance (10 elements) v2

No description provided

Creating/adding html element performance (10 elements)

No description provided

Creating/adding html element performance (100 elements)

No description provided

Case-insensitive string comparison: regex -i versus string.toUppercase

No description provided

compare-01

No description provided

String to number conversion in Vanilla JS

No description provided

Date.now() vs new Date().valueOf()

No description provided

test comparsion by value vs by link

No description provided

Input vs Textarea large text

No description provided

Array.prototype.every vs _.every

Compare the new ES6 spread operator with the traditional concat() method

Create and append/remove versus display:block/display:none (improved)

By writing javascript web applications It is often common the need to show or hide elements like a div according to the user actions. Is it better to do this by creating and appending the node when it is needed or to create the node on the application start and then just display or hide it? This benchmark is a performance test of this particular use case. In this version, the createAppendDiv was isolated from operations that can be done once, so the test executes just the operations that are really essencial for the test case.

Create and append/remove versus display:block/display:none

By writing javascript web applications It is often common the need to show or hide elements like a div according to the user actions. Is it better to do this by creating and appending the node when it is needed or to create the node on the application start and then just display or hide it? This benchmark is a performance test of this particular use case.