Commit Graph

8 Commits

Author SHA1 Message Date
8ee50178f3 Avoid confusing prototype methods for static methods
Correct: `Array.from()` (it’s a static method)
Incorrect: `Array.join()` (doesn’t exist; it’s a prototype method)

This patch uses the common `#` syntax to denote `.prototype.`.
2018-09-28 15:44:12 -04:00
3d1da367b9 Update deepClone.md
We missed that the clone length wasn't there. This fixes the issue
2018-05-13 23:07:44 -07:00
50e3be73af Travis build: 2050 2018-05-11 09:46:16 +00:00
ddc299eedc deepClone: Fixed indents & failing tests 2018-05-11 10:23:59 +01:00
2930713371 Simplify deepClone snippet's handling of arrays. 2018-05-10 19:22:35 +01:00
oh
f2abd5c226 fix(deepClone): Fixed problems with array values
Would previously create an object with indices as keys. Now properly clones as array.

#658
2018-05-09 20:01:55 +01:00
86ea29955c Travis build: 1350 2018-01-23 18:50:30 +00:00
2883a77110 Add deepClone.md 2018-01-23 20:48:46 +02:00