Returns true if a string contains the given substring, false otherwise.
true
false
Returns false if either argument is not a string.
contains('Hello World', 'World') → true contains('Hello World', 'Foo') → false contains(123, 'foo') → false