fork(1) download
  1. // your code goes here
  2. let text="";
  3. let i=2;
  4. if(i < 18) {text = i + "is eligible to vote";}
  5. else{text= i + "is underage";}
  6. console.log(text);
Success #stdin #stdout 0.04s 16640KB
stdin
Standard input is empty
stdout
2is eligible to vote