concatenate three strings
bsollenb54 opened this issue · 2 comments
bsollenb54 commented
How would concatenate three strings?
var 2 = "abc".toSlice().concat("def".toSlice().concat("ghi".toSlice()));
What am I missing?
rohalla2 commented
Having the same issue. It only seems to concat the first two strings for me.
longzhi commented
@bsollenb54 It should be:
var 2 = "abc".toSlice().concat("def".toSlice().toSlice().concat("ghi".toSlice()));