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