{"ScriptPreparationCode":"var constants = \u0027abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\u0027.split(\u0027\u0027);\r\nvar findable = \u0027A\u0027;\r\nvar unfindable = \u00270\u0027;","TestCases":[{"Name":"Compare to -1","Code":"if (constants.indexOf(findable) !== -1) {\r\n var A = true;\r\n}\r\nif (constants.indexOf(unfindable) !== -1) {\r\n var O = true;\r\n}","IsDeferred":false},{"Name":"Use tilde","Code":"if (~constants.indexOf(findable)) {\r\n var A = true;\r\n}\r\nif (~constants.indexOf(unfindable)) {\r\n var O = true;\r\n}","IsDeferred":false}]}