I am learning about javascript from the book "JavaScript Bible", but I have some difficulties. I'm trying to understand this code:
function checkIt(evt) {
evt = (evt) ? evt : window.event
var charCode = (evt.which) ? evt.which : evt.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
status = "This field accept only numbers."
return false
}
status = ""
return true
}
Someone can explain to me?

