This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.
Participate
function isAge(str){ var mydate=new Date; var now=mydate.getFullYear(); if (str < now-60 || str > now-18){ return false; } return true; }