>FromYourCode();

All the sources codes "But why ?"page 20

JavaScript
 August 17, 2014 am31 09:30
#197
function isNegative(number) { 
  if (number.match(/^-\d+$/)) {
    return true;
  } else {
    return false;
  }
}