> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-react-native-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-react-native-integration/other/reference/rnaatkit/functions/showplacement.md).

# showPlacement

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

Shows interstitial ad if ad is ready.

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```javascript
showPlacement(placementName, callback)
```

placementName **(REQUIRED)**

*string.* Unique name of placement. The same name will be used in addapptr.com account.

callbac&#x6B;**(REQUIRED)**

*Callback\<Boolean>.* Used to provide the function call result to JavaScript.

Parameters:

* **Boolean** - True if showing interstitial was successful, false otherwise.

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```javascript
RNAatkit.showPlacement("Fullscreen", (interstitialShown) => {
                console.log("interstitialShown " + interstitialShown);
            });
```
