In this chapter, we will dig deeper into the Lightning component rendering life cycle and its JavaScript API. The Lightning Component framework typically uses the ES5 version of JavaScript. However, some ES6 support is built in, including the use of Promises and, array functions. The Lightning component framework does not support all of the APIs in JavaScript ES5 specifications, due to security. Only APIs that are considered safe from a web security perspective are supported by the framework. Salesforce runs the custom JavaScript that we write in the helper, controller, or RENDERERÂ files, through a service known as a locker service, which ensures that your JavaScript code is safe and compliant with security.
This chapter will start with the various system-specific JavaScript functions and APIs provided by the Lightning framework, and we will then...