René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

if [JavaScript snippet]

function main() {

  if (42 < 10) {
    txt_out('1');
  }
//elsif (42 < 20) {  // There is no elsif in Javascript.
//  txt_out('2');
//}
  else {
    txt_out('3');
  }
}