Travis build: 206 [cron]

This commit is contained in:
30secondsofcode
2018-08-09 19:55:39 +00:00
parent 4f2b50027c
commit 04ce8cb7c2
3 changed files with 1648 additions and 1638 deletions

File diff suppressed because one or more lines are too long

View File

@ -187,7 +187,7 @@
"fileName": "average.md",
"text": "Returns the average of two or more numbers.\n\nUse `Array.reduce()` to add each value to an accumulator, initialized with a value of `0`, divide by the `length` of the array.",
"codeBlocks": [
"const average = (...nums) => [...nums].reduce((acc, val) => acc + val, 0) / nums.length;",
"const average = (...nums) => nums.reduce((acc, val) => acc + val, 0) / nums.length;",
"average(...[1, 2, 3]); // 2\naverage(1, 2, 3); // 2"
],
"tags": [
@ -197,7 +197,7 @@
},
"meta": {
"archived": false,
"hash": "684bb67aac10990814a49d1d1878d98ec6d2161bd71f769a128e3195f9aeb632"
"hash": "992835ed744ef767f4cdf46f9881cca57a73695e2a8637a383490bf44369d31b"
}
},
{

File diff suppressed because it is too large Load Diff