{"ScriptPreparationCode":null,"TestCases":[{"Name":"lambda check","Code":"const checkType = (value) =\u003E typeof value === \u0027string\u0027 || typeof value === \u0027boolean\u0027 || typeof value === \u0027number\u0027\r\n\r\nreturn checkType(49);","IsDeferred":false},{"Name":"checking a object in memory","Code":"const types = {\r\n \u0027string\u0027: true,\r\n \u0027boolean\u0027: true,\r\n \u0027number\u0027: true\r\n}\r\n\r\nconst checkType = (value) =\u003E types[typeof value]\r\n\r\nreturn checkType(49);","IsDeferred":false}]}