[Back to reference](../README.md)

### `isString(value)`
Checks if `value` is of type String and returns `true` if so, or `false` if not.

#### Examples:

```javascript
let result1 = gmynd.isString( 270 );        // will return false 
let result2 = gmynd.isString( "Hello!" );   // will return true 
let result3 = gmynd.isString( ["a", "b"] ); // will return false 
```

