is there a way to get an index of an array within a handlebar template and I want to get the last value in the array and call a . property on it
{{currentRevision.computedRoutingNodes.length-1.numberOfReviewDays}}
computedRoutingNodes is an array of objects
I know i can get an index like
{{currentRevision.computedRoutingNodes.1.numberOfReviewDays}}
but I want to get the last value dynamically