When I tried to explore difference between pareseInt(), parseFloat() and Number() I absorbed this difference.
parseInt("10e+1"); // 10
parseFloat("10e+1"); // 100
Number ("10e+1"); // 100
When I read the document about parseFloat() on Mozilla web docs, I understood that the parseFloat() will accept exponent. Where as there is no specific point about this for parseInt(). I am very much interested to know why this difference in these similar methods