%%
date:: [[2023-01-26]]
%%
# [[Template literals in js]]
To span across multiple lines in [[JavaScript|js]], use template template literals by using backticks:
```js
let chaosSummary = `
\n\nxk6-CHAOS
-----
EXPERIMENT: Pod termination.
HYPOTHESIS: After terminating a pod, the application still operates within thresholds.
Number of pods before termination: ${numPodsBegin}
${victims.length} pod(s) terminated: ${victims}
Number of pods at the end of the test: ${pod.list().length}
`;
```