--- title: KMManager.getVersion() --- ## Summary The **`getVersion()`** method returns the version number of Keyman Engine. ## Syntax ``` javascript KMManager.getVersion() ``` ### Returns Returns Keyman Engine version number as `String`. ## Description Use this method to get the version number of Keyman Engine. ## Examples ### Example: Using `getVersion()` The following script illustrate the use of `getVersion()`: ``` javascript String version = KMManager.getVersion(); ```