在表达式中:
var x = ((1) + 2) + 3
在箭头函数参数列表中:
var incrementer = (x) => x + 1
在 TypeScript 和 Flow 类型声明中:
type Card = (Suit & Rank) | (Suit & Number)