Thursday, 5 January, 2017 UTC


Summary

A JavaScript Proxy allows you to intercept operations performed on objects, arrays, or functions like property lookup, assignment, invocation, property deletion, and more to add custom behavior. In this lesson we look at how to intercept property lookup with the `get` "trap" that will allow us to get items starting from the end of the array with ease.