In Typescript, this shows an error saying isNaN accepts only numeric values
isNaN(\'9BX46B6A\')
and this returns false because parseF
parseF
For full numbers (non-floats) in Angular you can use:
if (Number.isInteger(yourVariable)) { ... }