// formatDate.js
import { LightningElement } from 'lwc';
import LOCALE from '@salesforce/i18n/locale';
export default class FormatDate extends LightningElement {
date = new Date(2020, 6, 7);
formattedDate = new Intl.DateTimeFormat(LOCALE).format(this.date);
}