Namespace: String

String

Source:

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.
Source:
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.
Source:
Returns:
An array containing the words.
Type
Array.<string>
Example
'This is a senctence'.words() // ['This', 'is', 'a', 'sentence.']