Type Casting Conversion:
Example combined:-
<!DOCTYPE html>
<html>
<body>
<script>
let mixed = "42.75px";
console.log(Number(mixed)); // NaN
console.log(parseFloat(mixed)); // 42.75
console.log(parseInt(mixed)); // 42
</script>
</body>
</html>