This is somewhat similar to split() in javascript, but here's my question, and it's more theoretical than practical
I have an array that looks like this:
var array = ["abc", "def"]
When I do
debug(array === array.toString().split(","));
I get false, I tried == and that also gives false. I did a debug dump of the array and the joined/split array and they look exactly the same in output. What is the difference between them that's causing this to evaluate to false?
I think it's pretty clear for my code that I can just use array without having to do toString.split (it was necessary earlier, I think, not anymore), I'm just curious as to what's going on here.