blob: 3002460b5da212e39c26d78964c06d3b7ff72d20 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// (beautified)
console.log(function() {
return 1 + .1 + .1;
}());
// output: 1.2000000000000002
//
// minify: 1.2
//
// options: {
// "compress": {
// "unsafe_math": true
// },
// "mangle": false
// }
|