function captureThreeNumbers(str) {
// 方法1
// if (/\d{3}/.exec(str)) {
// return /\d{3}/.exec(str)[0]
// }
// return false
// 方法二
return str.match(/\d{3}/) ? str.match(/\d{3}/)[0] : false
}
function captureThreeNumbers(str) {
// 方法1
// if (/\d{3}/.exec(str)) {
// return /\d{3}/.exec(str)[0]
// }
// return false
// 方法二
return str.match(/\d{3}/) ? str.match(/\d{3}/)[0] : false
}