Quale sarebbe il modo preferito per creare costanti in javascript, in particolare con ES6?
Attualmente ho una classe di costanti che ha metodi che restituiscono la stringa che sto cercando.
class Constants {
constructor() {}
SOMECONSTANT() {
return 'someconstant';
}
}