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