mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 19:47:10 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
console.log(
|
|
"1234" + 1,
|
|
"1234"[0] + 1,
|
|
"1234"[6 - 5] + 1,
|
|
("12" + "34")[0] + 1,
|
|
("12" + "34")[6 - 5] + 1,
|
|
[1, 2, 3, 4].join("")[0] + 1
|
|
);
|