Skip to content

Instantly share code, notes, and snippets.

@yurfuwa-chan
Created March 18, 2013 15:17
Show Gist options
  • Save yurfuwa-chan/5187898 to your computer and use it in GitHub Desktop.
Save yurfuwa-chan/5187898 to your computer and use it in GitHub Desktop.
Array.map
["10","10","10"].map(s);
//mapは要素,index,参照先が渡される
function s(e,i,o){
console.log(arguments)
return e
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment