- ignore difference in error messages - improve readability on trailing whitespace differences - improve performance & quality via `console.log()` insertions
20 lines
255 B
JavaScript
20 lines
255 B
JavaScript
// (beautified)
|
|
var b = 0;
|
|
|
|
var expr2 = (0 - 1 - .1 - .1).toString();
|
|
|
|
for (var key2 in expr2) {
|
|
--b;
|
|
}
|
|
|
|
console.log(b);
|
|
// output: -19
|
|
//
|
|
// minify: -4
|
|
//
|
|
// options: {
|
|
// "compress": {
|
|
// "unsafe_math": true
|
|
// },
|
|
// "mangle": false
|
|
// }
|