2: 3.4, , OP, ( Playground):
class MyClass {
tableHead: readonly [string, string, string]
tableCells: readonly [number, number, number]
}
1: 2.7, TypeScript .
, . TypeScript .
, , , . ,
type StringTriplet = [string, string, string]
:
const a: StringTriplet = ['a', 'b', 'c']
,
const [one, two, three, four] = a;
, , :
const [one, two, three] = a;
, , , , , map
const result = a.map()
, result 3 , 3. , , , . a