fork download
  1. function displayScore(name, points) {
  2. console.log(name + ": " + points);
  3. }
  4. displayScore("John", 350);
Success #stdin #stdout 0.03s 16316KB
stdin
Standard input is empty
stdout
John: 350