fork download
  1. const x = 2;
  2. let y = 4;
  3. function update(arg) {
  4. return Math.random() + y * arg;
  5. }
  6. y = 2;
  7. y ++;
  8. const result = update(x);
  9. console.log(result);
Success #stdin #stdout 0.04s 16896KB
stdin
Standard input is empty
stdout
6.496128667302223