<strong><a name="caloru" th:each="elem : ${food[0]}" th:text="${elem.calories}"></a></strong>
let food = [10];
let elem = {
calories: 555
};
const html = `<strong><a name="caloru" th:each="elem : ${food[0]}" th:text="${elem.calories}">тег а</a></strong>`;
document.body.insertAdjacentHTML('beforeend', html);
const el = document.querySelector('[name="caloru"');
const thEach = el.getAttribute('th:each');
const thText = el.getAttribute('th:text');
console.log(thEach, thText);