top | item 10686558

(no title)

tallerholler | 10 years ago

that won't play nice with coffeescript!

discuss

order

wycats|10 years ago

CoffeeScript should have thought of that ;)

kenOfYugen|10 years ago

JS

  var result = exclaim(capitalize(doubleSay("hello")));
ES7 Proposal: The Pipeline Operator

  var result = "hello"
    |> doubleSay
    |> capitalize
    |> exclaim;
CoffeeScript

  result = exclaim capitalize doubleSay 'hello'
I'll take CoffeeScript.