'float number conversions with ".toString" is funcional in JavaScript?

For example, if I convert number 1.1 to binary (or any other number base) is it possible to return it to decimal float number?

console.log((1.1).toString(2));
console.log((1.1).toString(8));
console.log((1.1).toString(16));


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source