判断邮箱是否合法const regExp = /\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/
return regExp.test(email)
判断电话号码是否合法const regExp =
2020-12-05