📅  最后修改于: 2022-03-11 15:02:14.585000             🧑  作者: Mango
let eventValue = event.target.value;
if (/^\d+$/.test(eventValue)) {
eventValue = parseInt(eventValue, 10);
}
//If value is a string, it converts to integer.
//Otherwise it remains integer.