While working on an Angular project with TypeScript, I am facing a challenge of displaying certain JSON fields obtained from a POST request to the user.
One of the fields begins with the '@' symbol, which is a reserved word in Angular causing
this.timestamp=response.@timestamp
This results in a compile error -
Identifier expected
How can I work around this issue and escape the problematic character?