Viktor
Viktor
see new ES draft about iteration and "delete"/"set"...
Use drag and drop on http://jakiestfu.github.io/Medium.js/docs/#inline .
Chrome 49 on Windows XP. Probably, relates to https://bugs.chromium.org/p/chromium/issues/detail?id=419231
var map = new Map(); map.set(1, 1); map.set(2, 2); map.set(3, 3); var iterator = map.iterator(); console.log(iterator.next()[0]); map["delete"](1); console.log(iterator.next()[0]);
not supported
see https://twitter.com/BrendanEich/status/360832908514181122 1) `Math.round(0.5 - Number.EPSILON / 4)` should be equal to `0` 2) `Math.round((2 / Number.EPSILON + 1) / 2 + 1)` should be equal to `(2 / Number.EPSILON...
Some benchmarks like the one at https://peterolson.github.io/BigInteger.js/benchmark/#:~:text=Multiplication:%20400%20digits shows that the native BigInt is 10 times faster. This is very interesting why... because modern js engines are very good. Is it...
Some benchmarks like the one at https://peterolson.github.io/BigInteger.js/benchmark/#:~:text=Multiplication:%20400%20digits shows that the native BigInt is 10 times faster. This is very interesting why... because modern js engines are very good. Is it...