fork download
  1. function sumScore(score, bonus) {
  2. console.log(score + bonus);
  3. }
  4. sumScore(100, 50);
Success #stdin #stdout 0.03s 16436KB
stdin
Standard input is empty
stdout
150