Sorry my English is poor. I have a question.
In JavaScript , I can get value like this code: console.log("${testMap['0']}"); //return 'some string';
When I change my code like this ,I can't get value... let status = '0'; console.log("${testMap['" + status + "']}");//return '';
how can I get Map value by dynamic attribute key in JavaScript?