Я хочу создать объект, в котором класс использует данные двух других классов того же объекта.
const MatchReplace = {
Username: {
RegExp: new RegExp('%USERNAME%', 'g'), // Joined user name
Value: 'DareFox'
},
UserWithTag: {
RegExp: new RegExp('%USERWITHTAG%', 'g'), // User#XXXX
Value: 'DareFox#0100'
},
ServerName: {
RegExp: new RegExp('%SERVERNAME%', 'g'), // Name of this server
Value: 'StackOverflow'
},
MemberCount: {
RegExp: new RegExp('%MEMBERCOUNT%', 'g'), // Member count (human & bots)
Value: '1005'
},
HumanCount: {
RegExp: new RegExp('%HUMANCOUNT%', 'g'), // Only human count
Value: '1000'
},
BotCount: {
RegExp: new RegExp('%BOTCOUNT%', 'g'), // Only bot count
Value: MatchReplace.MemberCount.Value - MatchReplace.HumanCount.Value // Expected: 5
}
}
Но я получаю сообщение об ошибке:
Value: MatchReplace.MemberCount.Value - MatchReplace.HumanCount.Value
^
ReferenceError: Cannot access 'MatchReplace' before initialization
Почему это не работает и как заставить работать?