Giter Site home page Giter Site logo

deno-benchmarks's Introduction

Deno Benchmarks

Using Deno to benchmark basic JS/TS operations.

Running

deno bench

Results

Shockingly, it's an order of magnitude faster to use typeof x === 'string' constructing a new string each time than to use const STRING = 'string' once in the global scope then compare typeof x === STRING.

Fastest: typeof w/ new string
8.58x faster than typeof w/ const string
Fastest: spread
1x faster than slice
1.02x faster than concat
11.99x faster than for loop
27.04x faster than map

The performance impact is negligible between using Map or Set's' has() method before set() or add() vs just using set() or add() without checking first.

Fastest: C-style for var
1.01x faster than C-style for let 
1.99x faster than for let of 
1.99x faster than for var of 
2x faster than for const of 
17.3x faster than forEach

Splitting on First Space

Using indexOf() and slice() is always at least 1 order of magnitude faster than using split() and join, and is always faster than using .match() growing to by orders of magnitude faster as the string gets longer.

deno-benchmarks's People

Contributors

pskfyi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.