Array.map("foo", function(x) { return String.charCodeAt(x) })// is [112,111,111]
[ String.charCodeAt(x) for each ( x in "foo" ) ]// is [112,111,111]