12 lines
224 B
JavaScript
12 lines
224 B
JavaScript
const result = () => {
|
|
var _ref, _ref2, _ref3;
|
|
|
|
return _ref3 = (_ref2 = (_ref = -2.2 // -2.2
|
|
, Math.floor(_ref) // -3
|
|
), () => Math.pow(_ref2, 5) // () => -243
|
|
), _ref3();
|
|
}; // -243
|
|
|
|
|
|
expect(result()).toBe(-243);
|