RikedyP
[](http://www.youtube.com/watch?v=jXz_g26gKJI "Array-Oriented Programming in JavaScript & Python")
This week I solved the [Perl Weekly Challenge](https://perlweeklychallenge.org/blog/perl-weekly-challenge-088/) problems in APL, and then tried to translate those solutions into JavaScript and Python while maintaining an array-oriented, functional style.
The APL solutions are:
```APL
ArrayOfProduct←{×/⍵⌷⍤1 99⍨↑(⊢~⍥,⍤99 0⊢)⍳⍴⍵}
```
and
```APL
SpiralMatrix←{0∊⍴⍵:⍬ ⋄ (1⌷⍵),∇⍉⌽1↓⍵}
```