I have the following where i am formatting the moment date and storing it into an object as follows
async date(){
var today=Moment() **// today gets stored as Wed Mar 16 2022 12:05:07 GMT+0200 (Standard Time)'**
var date= today.format("dddd,D MMM YYYY"); /**/ date gets stored as Wednesday,16 Mar 2022**
var name= **how do i add what the name of the country is thats been returned after the GMT+0200 so it would be Standard Time**
}
is there a format option that i can assign the Country name to an object? so the variable name will store the country?