Skip to content

[03] Information

hyeyoonS edited this page Mar 26, 2024 · 11 revisions

📎 Information

💙참고하면 좋은 심화자료
💜개념 이해에 도움이 되는 자료
💚질문, 논의 사항 외 정보 전달 목적의 글


Title

<title> 💟 [`${metaData.chapter}장`] {metaData.description} <title>

Contents

type MetaDataProps {
	author: string;
	createdAt: string;
	studiedAt: string;
	chapter: number;
	description: string;
	}

//예시
const metaData: MetadataProps = {
	author: "혜윤",
	createdAt: 2024-03-27,
	chapter: 3,
	description: "Type과 Interface는 각각 언제 사용하는 걸까?"
	}
	
const { chapter, description } = metaData;