Methods
contains(substring) → {boolean}
Checks whether the supplied substring is a part of this.
Parameters:
Name | Type | Description |
---|---|---|
substring |
string | the substring to check for. |
Returns:
true if substring is a part of this string,
otherwise false.
- Type
- boolean
Example
'foo'.contains('f') // -> true
'foo'.contains('Q') // -> false
words() → {Array.<string>}
splits a string of text into words.
Returns:
An array containing the words.
- Type
- Array.<string>
Example
'This is a senctence'.words() // ['This', 'is', 'a', 'sentence.']