{"ScriptPreparationCode":"this.numberA = Math.random() * 1000;\r\nthis.numberB = Math.random() * 1000;","TestCases":[{"Name":"Math.min","Code":"return Math.min(this.numberA, this.numberB);","IsDeferred":false},{"Name":"if","Code":"if (this.numberA)\r\n return this.numberA;\r\nelse\r\n return this.numberB;","IsDeferred":false},{"Name":"ternary","Code":"return this.numberA ? this.numberA : this.numberB","IsDeferred":false},{"Name":"OR","Code":"return this.numberA || this.numberB","IsDeferred":false}]}