I\'m looking to add decimals to the end of my integer. As an example:
15 => 15.00
The problem with methods like toFixed is that it will convert it into a string.
When working with numbers 15 and 15.00 are equal. It wouldn't make any sense to use memory to store those trailing or leading zeros. 
If that information is needed it is usually for displaying purposes. In that case a string is the right choice. 
In case you need that value again you can parse the string as a number.