Merge pull request #4088 from natac13/fix/unclear-dexcription-iterating-map-#4059

fix unclear description and lack of usage in the editor.
pull/4093/head
Berkeley Martinez 2015-11-01 07:45:01 -08:00
commit 1f61c4be02
1 changed files with 2 additions and 2 deletions

View File

@ -189,8 +189,8 @@
"title":"Iterate over Arrays with .map",
"description":[
"The <code>map</code> method is a convenient way to iterate through arrays. Here's an example usage:",
"<code>var timesFour = array.map(function(val){</code>",
"<code>&thinsp;&thinsp;return val*4;</code>",
"<code>var timesFour = oldArray.map(function(val){</code>",
"<code>&thinsp;&thinsp;return val * 4;</code>",
"<code>});</code>",
"",
"The <code>map</code> method will iterate through every element of the array, creating a new array with values that have been modified by the callback function, and return it.",