🚴♂️
When not coding...
React/Node/MERN,iOS/Swift...
TDD Enthusiast
-
Self-Employed
- Israel
- www.linkedin.com/in/levyilan
Highlights
- Pro
Pinned Loading
-
Count Words
Count Words 12function reducer(acc, currentValue, currentIndex, arr) {
3acc[currentValue] = (acc[currentValue]+1) || 1;
4return acc;
5}
-
ES6 SetAll Map Override
ES6 SetAll Map Override 1class MyMap extends Map {
2constructor() {
3super();
4this.counter = 0;
5this.all_value = null;
-
Use Reduce for Math Expression
Use Reduce for Math Expression 1const exp = '10+2*5*3+6';
2const result = exp.split('+').reduce((added, e) => added += (e.split('*').reduce((multiplied, k) => multiplied *= parseInt(k), 1) ), 0 );
3console.log(result);
-
react-map-api
react-map-api Public templatereact app google map - add/remove points on map
JavaScript
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.