Giter Club home page Giter Club logo

js-bench's Introduction

js-bench

I really like to know the performance differences of things, this allows me to do just that.

js-bench's People

Contributors

davidtpate avatar

Watchers

 avatar  avatar

js-bench's Issues

Regex Performance

In my limited testing thus far doing something like ^([\[{\(])?([\]}\)])?$ will operate more slowly than ^([\[{\(]?)([\]}\)]?)$ even on small strings. In my current limited testing I see a ~3% difference

Object Access & Traversal

Comparison of methods such as:

if (a in b) {
  a[b]();
}
if (a && a[b]) {
  a[b]();
}
a && a[b] && a[b]();

and other methods for checking for the presence of the object.

Comparison of Object Prototypal Inheritance Methods

Want to compare the cost for the functionality of prototypal inheritance within ES6 and libraries. This should include both a "deep" inhertiance (see the user land modules for what this means) and the shallow version that Object.assign(...) implements.

Object.assign(target, parent);
jQuery.extend(target, parent);

Other versions as well including extend on NPM, LoDash, etc. and the deep versions also.

Comparison of Set Operations

Looking at different methods of manipulating Sets would be ideal. Doing things like the following:

Merging two sets

function mergeSets(setA, setB) {
  setA.merge(setB);
  return setA;
}

function mergeSetsAlt(setA, setB) {
  return setA.concat(setB);
}

Returning a new instance of a Set

function cloneSet(setA) {
  var setB = new Set();
  setB.merge(setA);
  return setB;
}

function cloneSetAlt(setA) {
  return setA.slice();
}

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.