Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

javascript - parseInt fixing the value

Here I have a value with commas.

Ex:-var abc = "10,10.12";

If I use var x = parseInt(abc);

it is returning 10

Expected output is 10,10.12

as I have used ng-value="UpdatedPropuesta.VALOR_CUOTA | number:2" in JSP.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you want an array of numbers out of the string then try this,

const input = "10,10.12";
var output = input.split(",");
output = output.map(i => Number(i));
console.log(output);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...