varcheckPass=function(password){vartheLength=/^.{8,32}$/;// 길이는 8~32자 사이
varupper=/[A-Z]/;// 대문자
varlower=/[a-z]/;// 소문자
varnumbers=/[0-9]/;// 숫자
varspecial=/[!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~]/;// 특수문자
if(theLength.test(password)&&upper.test(password)&&lower.test(password)&&numbers.test(password)&&special.test(password)){returntrue;}else{returnfalse;}}