14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
// (beautified)
|
|
var expr2 = (0 - 1 - .1 - .1).toString();
|
|
|
|
console.log(expr2);
|
|
// output: -1.2000000000000002
|
|
//
|
|
// minify: -1.2
|
|
//
|
|
// options: {
|
|
// "compress": {
|
|
// "unsafe_math": true
|
|
// },
|
|
// "mangle": false
|
|
// }
|