show/hide this revision's text 2 added 1 characters in body

Prototype's pluck takes advantage of that in Javascript object.method() is the same as object[method].

Unfortunately you can't call String.Length either because it's not a static method. You can however use:

#r "FSharp.PowerPack.dll" 
open Microsoft.FSharp.Compatibility
words |> List.map String.length

http://research.microsoft.com/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Compatibility.String.html

However, using Compatibility will probably make things more confusing to people looking at your code.

show/hide this revision's text 1

Prototype's pluck takes advantage of that in Javascript object.method() is the same as object[method].

Unfortunately you can't call String.Length either because it's not a static method. You can however use:

r "FSharp.PowerPack.dll" 
open Microsoft.FSharp.Compatibility
words |> List.map String.length

http://research.microsoft.com/fsharp/manual/FSharp.PowerPack/Microsoft.FSharp.Compatibility.String.html

However, using Compatibility will probably make things more confusing to people looking at your code.