0
/ 10
Rewrite the function getElementAt()
so that it returns the element nth
in the array numbers
, but only if there is an element at that...
Rewrite the function getElementAt()
so that it returns
the element nth
in the array numbers
, but only if there
is an element at that position (it exists). If the nth
element doesn't exist (e.g., outside of bounds), then the
function should return the third argument passed to the
method, the value in notFound
.
Examples:
getElementAt({89,90,91},0,-1) -> 89
getElementAt({89,90,91},4,-99) -> -99
Your feedback will appear here when you check your answer.