I want to filter some posts from data.I try to use this code but it don’t work.It run out post.frontmatter.title.filter is not a function
{posts.map((post, index) => (
post.frontmatter.title.filter(name=>name.includes('J')).map(filterdtitle=>(
<li>{filterdtitle}</li>
))
))}
I get the data of posts by getStaticProps like this and then I pass the posts to the function.The posts include title.I can get by {post.frontmatter.title},it is working.
const { data: frontmatter } = matter(markdownWithMeta)
return {
slug,
frontmatter
}
})
I want to know that how make it work.Thank you