Evaluates a string as an array (of any type). Returns an empty array if evaluation fails.
The input string is wrapped in an array before evaluation, so it must be valid JS array content,
otherwise evaluation fails. Any expressions within the array content are evaluated as well.
For example: "1, 2, 3+2" returns [1,2,5].
Evaluates a string as an array (of any type). Returns an empty array if evaluation fails. The input string is wrapped in an array before evaluation, so it must be valid JS array content, otherwise evaluation fails. Any expressions within the array content are evaluated as well. For example: "1, 2, 3+2" returns
[1,2,5]
.