Generate an Array

Yes, the [Array: ...] or [Object: ...] does not get sent anywhere. It literally just means this is an actual Array or Object and not just a string.

And if you want to convert it to a string .toString() would be the wrong method to use as the output would look different. You would have to use JSON.stringify($node...).

2 Likes