Latest Benchmarks

Browse the latest JavaScript performance benchmarks created by the community.

Ternary or coercion

No description provided

!!a && b or a && b

No description provided

r vs j

No description provided

Map vs Object huge

Lookup of map vs object

Map vs Object large

Lookup of map vs object

IndexOf Array vs String

No description provided

Implicit vs parseInt vs Number string to num

No description provided

JavaScript Object.assign() vs object spread operator

No description provided

reduce vs sort for sorting arrays of objects

No description provided

Number() vs ParseInt

No description provided

Json vs Url Params parsing.

Compares the performance of parsing data send in the body as json vs data send in the url as params.

split vs regex (dot)

No description provided

Unique names include vs indexOf

No description provided

Immer vs shallow copy + immutable+myimmer

No description provided

Number.toLocaleString vs Intl.NumberFormat 2

No description provided

Classnames@2.3.2 vs CLSX@1.2.1 vs Alternatives

Compare CLSX vs Classnames vs an own implementation of creating a template string

Object destructuring performance

No description provided

String concatenation VS templating

No description provided

Awaiting sync vs async 2

No description provided

Lodash vs Javascript Preliminary Work 3

A set of simple tests to examine the performance of the two tools

Array Initialization Types v4

No description provided

Array Initialization Types v3

No description provided

Square Every Digit, but with toString()

Welcome. In this kata, you are asked to square every digit of a number and concatenate them. For example, if we run 9119 through the function, 811181 will come out, because 92 is 81 and 12 is 1. Note: The function accepts an integer and returns an integer

Square Every Digit (most popular solution on code wars)

Welcome. In this kata, you are asked to square every digit of a number and concatenate them. For example, if we run 9119 through the function, 811181 will come out, because 92 is 81 and 12 is 1. Note: The function accepts an integer and returns an integer

Square Every Digit

Welcome. In this kata, you are asked to square every digit of a number and concatenate them. For example, if we run 9119 through the function, 811181 will come out, because 92 is 81 and 12 is 1. Note: The function accepts an integer and returns an integer