function handleDaysChange(e) {
entDays = e.commonEventObject.formInputs.enteredDays.stringInputs.value[0]
entDays = entDays * 86400000 // One day in milliseconds
if (isNaN(entDays)) {
console.log(entDays + " is not a number")
}else{
console.log(entDays + " is a number")
}
return entDays
isNaN(entDays) confirms entDays value is a number
Any help would be appreciated. Thanks