string?
function:
return true if the argument is a string.
Examples:
- running:
(string? "one")
will give:true
- running:
(string? 1.32)
will give:false
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
string?
function:return true if the argument is a string.
(string? "one")
will give: true
(string? 1.32)
will give: false