Hi I need to convert this:
// Convert [[1],[2],[3],[4],["a","b","c"],["d","e","f"]]
to this:
[1,2,3,4,"a","b","c","d","e","f"]
In MS Office Script. I can’t use
I’ve tried using things like array.flat(), but it doesn’t exist in Office Script.
Hi I need to convert this:
// Convert [[1],[2],[3],[4],["a","b","c"],["d","e","f"]]
to this:
[1,2,3,4,"a","b","c","d","e","f"]
In MS Office Script. I can’t use
I’ve tried using things like array.flat(), but it doesn’t exist in Office Script.
2
Answers
Try something like that may be it’s help