Type[]
은 Array<Type>
의 축약형의 개념
//Array<Type> : 중첩시 혼란 야기 가능
let arr1: ComputedRef<Array<number>>;
//Type[] : 보다 간결함
let arr2: ComputedRef<number[]>;
//Array<Type> : 여러 타입 허용 가능
const arr1: Array<string | number> = [1, 'a'];
//Type[] : 여러 타입 허용 불가
const arr2: string[] = ['a', 'b'];
//이렇게 쓰는 식은 가능
const arr3: [string, number] = [1, 'a'];
//Array<Type> : ReadonlyArray 활용
let arr1: ReadonlyArray<number>;
//Type[] : readonly 추가
let arr2: readonly number[];