Core team, FYI, some broken escaping format for string interpolating examples.
There are more in the article than this screenshot.
https://aurelia.io/blog/2018/06/24/aurelia-release-notes-june-2018
Core team, FYI, some broken escaping format for string interpolating examples.
There are more in the article than this screenshot.
I thought they were broken, but it is actually not ? Can you point it out ?
Suppose to be
`Hello, ${firstName} ${lastName}!` vs. 'Hello, ' + firstName + ' ' + lastName + '!'
I can guess Aurelia view templating engine processed the above text content, which replaced (evaluated) ${firstName} with empty string.