1:3 |> x->x+1 |> x->join(x,",") |> length
1:3 |> x -> map(y -> y+1, x) |> x -> join(x, ",") |> length
1:3 |> x->x.+1 |> x->join(x,",") |> length
Note the dot in x.+1, that tells + to operate on each element of the array (x), and not the array itself.
(1:3 .|> x->x+1) |> x->join(x,",") |> length
1:3 |> x->x+1 |> x->join(x,",") |> length