How can I replace with template literals in this case please?
.....
filters:[
{ divName: 'CSS'
levels: [{key: 'GCSS', val:this.name '(GCSS)'}]
}
],
...
CodePudding user response:
try this:
`${this.name}(GCSS)`
The backticks are important.
Greetings, Flo