> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-cordova-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-cordova-integration/other/reference/functions/getversion.md).

# getVersion

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

Gets AATKit version.

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

```javascript
getVersion(callback)
```

callback **(REQUIRED)**

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

Parameters:

* String- AATKit version.

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

```javascript
AATKitCordova.getVersion((version) => {
                console.log("version " + version);
            });
```
