Write a recursive function to return the length of an array or list of integers without using array.length (JS) or the built-in len() function (Python).
The function signature you should use is:
function recursiveLen(arr, len = 0) {
// Your code here.
}