const arr: Array<object> =[{
	name: 'test',
	age:12,
	isShowing: true
}]

접근할때 dot notation 하면 에러남 // this.arr.isShoing //Error
arr 에 매개변수 안에 isShowing 이라는 프로퍼티가 object안에 없다

interface로 type 선언해줘야됨