fork download
  1. function isRentingAge(age) {
  2. console.log(age >= 25);
  3. }
  4. isRentingAge(25);
Success #stdin #stdout 0.02s 16384KB
stdin
Standard input is empty
stdout
true