This calculator helps you compute the NIHSS score. More information and a pdf version of the stroke scale is available from the US National Institutes of Health at this web address click here
NIH Stroke Scale
form.addEventListener('change', () => { let total = 0; const fieldNames = [ 'loc1a', 'loc1b', 'loc1c', 'bestGaze', 'visual', 'facialPalsy', 'motorArmLeft', 'motorArmRight', 'motorLegLeft', 'motorLegRight', 'ataxia', 'sensory', 'language', 'dysarthria', 'neglect' ];
fieldNames.forEach(name => { const selected = form.querySelector(`input[name="${name}"]:checked`); if (selected && selected.value !== 'UN') { total += parseInt(selected.value); } });
totalScoreEl.textContent = total; });