string?

checks if given value is of type :string


Parameters

string? value :any

Returns

  • :logical

Examples

copy
print string? "x" ; true print string? 'x ; false print string? 123 ; false

Related