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