blob: ba4b56c9b40dfaaac95cc33ce0a8584a695609f8 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// (beautified)
console.log(0 - 1 - .1 - .1);
// output: -1.2000000000000002
//
// minify: -1.2
//
// options: {
// "compress": {
// "unsafe_math": true
// },
// "mangle": false
// }
|