Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 663 Bytes

JavaScript.md

File metadata and controls

26 lines (21 loc) · 663 Bytes
// OPTIMIZATED: https://prepack.io/repl.html
(function () {
  var _$0 = Date.now();

  if (typeof _$0 !== "number") {
    throw new Error("Prepack model invariant violation: " + _$0);
  }

  result = _$0 * 2 > 42 ? 55 : _$0;
})();

// old - org
(function() {
  function fib(x) {
    return x <= 1 ? x : fib(x - 1) + fib(x - 2);
  }

  let x = Date.now();
  if (x * 2 > 42) x = fib(10);
  global.result = x;
})();