When I add float numbers in value="3.4567890", it converts to number type 'int'. I don't want it convert to number type 'int'. I want it to be 'number' or type 'float'.
Example:
const rangeValue = document.querySelector('input');
console.log(rangeValue.value);
<input type="range" min="0" max="0" value="3.4567890">
console.log converts to number type int.
valueattribute is never type 'int', as there is no integer type in JavaScript. It is also not type 'number'. Input value is always type 'string'.