"The quick brown fox" contains "quick"
» true
string.dateString () contains "Fri"
» true
Thank God it's Friday!
1234 contains 23
» true
The numbers are converted to strings for this operation.
{1, 2, 3, 4} contains 3
» true
The number 3 is converted to a list, and the comparison results in true.
{1, 2, 3, 4} contains {2, 4}
» false
The first list contains the numbers 2 and 4, but not the list {2, 4} in sequence.
{"smoke": true, "fire": false, "heat": true} contains {"fire": false, "smoke": true}
» true
See Notes.