Skip to content
Snippets Groups Projects
Commit 70708557 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix type of Array.map callback return value.

parent 42f537e2
No related branches found
No related tags found
No related merge requests found
......@@ -893,7 +893,7 @@
* @param {Mixed} callback.value The element value.
* @param {Number} callback.index The element index.
* @param {Array} callback.array The array being traversed.
* @param {Boolean} callback.return The resulting element at the specified index.
* @param {Mixed} callback.return The resulting element at the specified index.
* @param {Object} [thisObject] Object to use as `this` when executing `callback`.
* @return {Array} Array of the return values of `callback` function.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment