Checks if value
is of type String and returns true
if so, or false
if not.
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