{"ScriptPreparationCode":"var testStr=\u0022Test string of moderate length that ends with the phrase Hello World!\u0022;","TestCases":[{"Name":"Includes for last word","Code":"testStr.includes(\u0022World!\u0022);","IsDeferred":false},{"Name":"Includes for middle word","Code":"testStr.includes(\u0022ends\u0022);","IsDeferred":false},{"Name":"EndsWtih for last word","Code":"testStr.endsWith(\u0022World!\u0022);","IsDeferred":false},{"Name":"RegEx for last word (with anchor)","Code":"/World!$/.test(testStr);","IsDeferred":false},{"Name":"RegEx for middle word","Code":"/ends/.test(testStr);","IsDeferred":false}]}