Gatsby サイトを実行しようとしていますが、実行すると次のnpm run developエラーが発生します。
> gatsby develop
 ERROR #10123  CONFIG
We encountered an error while trying to load your site's gatsby-config. Please fix the error x try again.
  Error: D:\Coding\web-blog\src\infra\feed.js:28
  description: post.intro ?? post.description,
                           ^
コード:
const item = {
                title: sanitizeTitle(post.title),
                description: post.intro ?? post.description,
                url: `${site.siteMetadata.siteUrl}/${post.slug}`,
                guid: `${site.siteMetadata.siteUrl}/${post.slug}`,
                categories: post.tags,
                author: site.siteMetadata.author,
                date: post.date,
            }
??JavaScriptの演算子とは何ですか? 新しい言語機能ですか?