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