入力要素の値を


以下の入力要素について:
<input type="number" id="input">
の代わりに:
document.getElementById('inpupt').value 
// '12'
することができます.
document.getElementById('inpupt').valueAsNumber 
// 12
You can read more here