Fix typo 'array or numbers' to 'array of numbers'

This commit is contained in:
Daniel Robinson
2015-10-08 19:18:53 -04:00
parent 945c5e3b2f
commit f6a87ef858

View File

@ -206,7 +206,7 @@
"title":"Condense arrays with .reduce",
"difficulty":0,
"description":[
"Reduce can be useful for condensing an array or numbers into one value.",
"Reduce can be useful for condensing an array of numbers into one value.",
"<code>var singleVal = array.reduce(function(previousVal, currentVal){</code>",
"<code>&thinsp;&thinsp;return previousVal+currentVal;</code>",
"<code>});</code>"