征集一个正则表达式(大于等于0小于等于28的整数)
/^(\d|1\d|2[0-8])$/
你为什么要用正则,if(Number.isInteger(a)){if(0<=a<=28){ console.log(‘a是0到28的整数’) }}