Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Index Power by Moff
function indexPower(array, n) {
return n < array.length ? Math.pow(array[n], n) : -1;
}
July 6, 2017
Comments: