For the complete documentation index, see llms.txt. This page is also available as Markdown.

ArrayTranspose

Returns a transposed array based on all passed in arrays.

 arrayTranspose(
     [ 1, 2, 3 ],
     [ 4, 5, 6 ],
     [ 7, 8, 9 ]
 );
 // [ [ 1, 4, 7 ], [ 2, 5, 8 ], [ 3, 6, 9 ] ]
 

Method Signature

ArrayTranspose()

Arguments

This function does not accept any arguments

Examples

Last updated

Was this helpful?