in javascript.
<script>
alert(10.99*11);// = 120.89
alert(11.99*11);// = 131.89000000000001
alert(12.99*11);// = 142.89000000000001
alert(13.99*11);// = 153.89000000000001
alert(14.99*11);// = 164.89000000000001
alert(15.99*11);// = 175.89000000000001
alert(16.99*11);// = 186.89
</script>
Why is this?
Why returns 000000000001?