## Get an Address Element This method retrieves a previously created Address Element. `elements.getElement('address')` returns one of the following: * An instance of an Address Element. * `null`, when no Address Element has been created. **Syntax:** `elements.getElement(...)` - `type` ('address') **required** The type of Element being retrieved, which is `address` in this case. - `options` (object) Options for retrieving the Address Element. - `mode` ('shipping' | 'billing') Required when using multiple Address Elements. Specify which mode of the Address Element you would like to retrieve. ### Get an Address Element ```js var addressElement = elements.getElement('address'); ``` ```es_next const addressElement = elements.getElement('address'); ```