Skip to content
View maumchaves's full-sized avatar
  • Vienna
Block or Report

Block or report maumchaves

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. flights-booking flights-booking Public

    Playground

    TypeScript

  2. next-routes next-routes Public

    Forked from fridays/next-routes

    Universal dynamic routes for Next.js

    JavaScript

  3. filtered-search-field filtered-search-field Public

    JavaScript

  4. separate stateful-logic-component.tsx separate stateful-logic-component.tsx
    1
    /*
    2
     * By Dan Abramov, @dan_abramov
    3
     * https://mobile.twitter.com/dan_abramov/status/1018945865745084416
    4
     */
    5
    
                  
  5. Custom implementation of Array.push(... Custom implementation of Array.push() as described by Douglas Crockford in his book "JavaScript: The Good Parts". The breakdown / analysis is my own.
    1
    /* TL;DR:
    2
     * The method replicates the functionality of Array.push
    3
     * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push
    4
     * Array.method("myFunction", function() {}) is just an imaginary pre-implemented function that
    5
     * is equivalent to Array.prototype.myFunction = function() {}