月と日付をstring型に変換して文字列の月と日をつけてreturnで返してあげたいです。
return month + "月" + day + "日";だと以下のエラーになってしまいます。
わかるかたご教授お願いしたいです。
Parsing error: ';' expected.eslint 到達できないコードが検出されました。ts(7027) ';' が必要です。ts(1005)
export const createTime = (d: number) => { const datetime = new Date(d * 1000); const month = (datetime.getMonth() + 1).toString(); const day = datetime.getDay().toString(); return month + "月" + day + "日"; };
<p>{createtime(unixtime)}</p>