Home > front end >  Turn numeric string
Turn numeric string

Time:09-23

Meet a problem today, parseFloat (num), if the num='99.00', who wants to put his into 99.00 shows that numerical what method? Would you please bosses solutions

CodePudding user response:

Var num="99.00"
Alert (parseFloat (num.) toFixed (2))
This way you can

CodePudding user response:

Yeah, stringformat,
  • Related