You can only compare 4 properties, any new property added will replace the first one from the comparison.
document.addEventListener('input', function(e) {
if (e.target.id === 'register_username') {
e.target.value = e.target.value.replace(/[^A-Za-z0-9]/g, '');
}
});