반응형
/**
* 만 14세 미만인지 체크
* @param birthDate yyyyMMdd
* @returns true:만14세미만 어린이
*/
function isChild(birthDate) {
var today = new Date();
var yyyy = today.getFullYear();
var mm = today.getMonth() < 9 ? "0" + (today.getMonth() + 1) : (today.getMonth() + 1); // getMonth()
var dd = today.getDate() < 10 ? "0" + today.getDate() : today.getDate();
return parseInt(yyyy+mm+dd) - parseInt(birthDate) - 140000 < 0;
}
세상 간단.
반응형
'스크립트' 카테고리의 다른 글
javascript startsWith (0) | 2019.09.20 |
---|---|
javascript forEach (0) | 2019.09.20 |
javascript 특수문자 정규식 체크. (0) | 2019.09.15 |
javascript - countdown , timer, 남은시간 (0) | 2019.08.08 |
javascript object length 구하기. (0) | 2019.06.30 |
css - 줄바꿈 (0) | 2019.05.15 |
vim - 하이라이트 끄기 (0) | 2019.05.13 |
IE img label for 클릭 안될때 처리 (4) | 2019.03.27 |