An open API service indexing awesome lists of open source software.

https://github.com/webcaetano/js-tests

Javascript Tests
https://github.com/webcaetano/js-tests

Last synced: 4 months ago
JSON representation

Javascript Tests

Awesome Lists containing this project

README

          

# js-tests
Javascript Tests

# Tests

#### Push vs Manual Push `Array insert`
http://jsbin.com/giturolafe/1/edit?js,console

Result:

```
push: 1648.202ms
manual: 324.871ms
```

#### Plus vs Number `Str to Num`
http://jsbin.com/lebufeqilo/1/edit?js,console

Result:

```
number: 1132.844ms
plus: 1389.620ms
```

#### Double Bitwise vs Math.floor `Number round`
http://jsbin.com/duhepazewo/1/edit?js,console

Result:

```
bitwise: 157.803ms
floor: 390.793ms
```

#### Quotes vs String() `Parse to string`
http://jsbin.com/qorozudare/1/edit?js,console

Result:

```
quotes: 2760.055ms
string: 3690.624ms
```