{"ScriptPreparationCode":null,"TestCases":[{"Name":"trunc","Code":"const x = Math.trunc(12.34 * 10);\r\nconst y = Math.trunc(567.89 * 10);","IsDeferred":false},{"Name":"round","Code":"const x = Math.round(12.34 * 10);\r\nconst y = Math.round(567.89 * 10);","IsDeferred":false},{"Name":"floor","Code":"const x = Math.floor(12.34 * 10);\r\nconst y = Math.floor(567.89 * 10);","IsDeferred":false},{"Name":"parseFloat to int","Code":"const x = parseFloat((12.34 * 10).toFixed());\r\nconst y = parseFloat((567.89 * 10).toFixed());","IsDeferred":false},{"Name":"~~","Code":"const x = ~~(12.34 * 10);\r\nconst y = ~~(567.89 * 10);","IsDeferred":false},{"Name":"0 |","Code":"const x = (0 | 12.34 * 10);\r\nconst y = (0 | 567.89 * 10);","IsDeferred":false},{"Name":"parseInt","Code":"const x = parseInt(12.34 * 10);\r\nconst y = parseInt(567.89 * 10);","IsDeferred":false},{"Name":"parseInt, 10","Code":"const x = parseInt(12.34 * 10, 10);\r\nconst y = parseInt(567.89 * 10, 10);","IsDeferred":false}]}