How can I remove decimal from Serial Number in the RITM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019 08:26 AM
6 REPLIES 6

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019 08:27 AM
try
var newSN = temp.replace('.', '');
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019 08:52 AM
This solution does not work. I'm sorry
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019 08:51 AM
Hello Francesco,
Use: toFixed()
var num = 5.56789;
var n = num.toFixed();
Please mark as Correct Answer/Helpful, if applicable.
Thanks!
Abhishek Gardade
Thank you,
Abhishek Gardade
Abhishek Gardade
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2019 08:55 AM
This solution does not work. I'm sorry