Skip to content
View ilanl's full-sized avatar
🚴‍♂️
When not coding...
🚴‍♂️
When not coding...

Highlights

  • Pro
Block or Report

Block or report ilanl

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 Loading

  1. Count Words Count Words
    1
    
    
    2
    function reducer(acc, currentValue, currentIndex, arr) {
    3
      acc[currentValue] = (acc[currentValue]+1) || 1;
    4
      return acc;
    5
    }
  2. ES6 SetAll Map Override ES6 SetAll Map Override
    1
    class MyMap extends Map {
    2
      constructor() {
    3
        super();
    4
        this.counter = 0;
    5
        this.all_value = null;
  3. Use Reduce for Math Expression Use Reduce for Math Expression
    1
    const exp = '10+2*5*3+6';
    2
    const result = exp.split('+').reduce((added, e) => added += (e.split('*').reduce((multiplied, k) => multiplied *= parseInt(k), 1) ), 0 );
    3
    console.log(result);
  4. react-map-api react-map-api Public template

    react app google map - add/remove points on map

    JavaScript

  5. redis-node-notifications redis-node-notifications Public

    Redis Scheduler

    JavaScript

  6. youtube-app-swift youtube-app-swift Public

    YouTube Based Native iOS Swift App

    Swift 1