## Get the Billing Address Element This method gets the previously created Billing Address Element instance, if it exists. `getBillingAddressElement()` returns one of the following: * The Billing Address Element instance. * `null`, when no Billing Address Element has been created. **Syntax:** `checkout.getBillingAddressElement(...)` ### Get the Billing Address Element ```js var element = checkout.getBillingAddressElement(); ``` ```es_next const element = checkout.getBillingAddressElement(); ```