{"ScriptPreparationCode":null,"TestCases":[{"Name":"Number (with string integer)","Code":"var numberStrInt = Number(Math.floor(1000 * Math.random()).toString());","IsDeferred":false},{"Name":"Unary \u002B (with string integer)","Code":"var unaryStrInt = \u002BMath.floor(1000 * Math.random()).toString();","IsDeferred":false},{"Name":"parseInt (with string integer)","Code":"var parseStrInt = parseInt(Math.floor(1000 * Math.random()).toString(), 10);","IsDeferred":false},{"Name":"Double Bitwise (with string integer)","Code":"var numberStrFloat = ~~(1000 * Math.random()).toString();","IsDeferred":false},{"Name":"Number (with integer)","Code":"var numberNumInt = Number(Math.floor(1000 * Math.random()));","IsDeferred":false},{"Name":"Unary \u002B (with integer)","Code":"var unaryNumInt = \u002BMath.floor(1000 * Math.random());","IsDeferred":false},{"Name":"parseInt (with integer)","Code":"var parseNumInt = parseInt(Math.floor(1000 * Math.random()), 10);","IsDeferred":false},{"Name":"Double Bitwise","Code":"var numberNumFloat = ~~(1000 * Math.random());","IsDeferred":false}]}