swc/ecmascript/minifier/tests/terser/compress/concat-strings/concat_2/input.js

11 lines
175 B
JavaScript
Raw Normal View History

console.log(
1 + (2 + 3),
1 + (2 + "3"),
1 + ("2" + 3),
1 + ("2" + "3"),
"1" + (2 + 3),
"1" + (2 + "3"),
"1" + ("2" + 3),
"1" + ("2" + "3")
);