prettier/tests/unary_expression/urnary_expression.js

9 lines
65 B
JavaScript
Raw Normal View History

!!x
x++
x--;
-+1;
x + + + + 1;
x + (+ (+ (+ 1)))
2017-03-08 01:43:05 +03:00
x * +y;
+x * y;