This changes the requirements 
.. i dont think you can use Javascript like that in a template node as its mainly used to create text.
You'll have to run whatever JS logic before sending it to http response.
Example:
[{"id":"62273981511d9f56","type":"http in","z":"5847b7aa62131d37","name":"","url":"/test","method":"get","upload":false,"swaggerDoc":"","x":220,"y":1600,"wires":[["6c4db5c600acac2b"]]},{"id":"32b0393cec4f0e17","type":"http response","z":"5847b7aa62131d37","name":"","statusCode":"","headers":{},"x":830,"y":1600,"wires":[]},{"id":"6c4db5c600acac2b","type":"function","z":"5847b7aa62131d37","name":"","func":"msg.payload = {\n \"contzahl\": 1,\n \"laenge\": 0,\n \"datum\": \"19.10.2021\",\n \"containerart\": \"something\"\n}\n\n\nif (msg.payload.contzahl == 1) {\n msg.payload = `Containerart : ${msg.payload.containerart}<br>Länge : ${msg.payload.contzahl} cm<br>Breite : ${msg.payload.contzahl} cm<br>Höhe : ${msg.payload.contzahl} cm<br>Gewicht : ${msg.payload.contzahl} kg`\n}\nelse {\n msg.payload = \"contzahl is not 1\"\n}\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":440,"y":1600,"wires":[["e027154c15e54ff8","72166b06b9b6e397"]]},{"id":"e027154c15e54ff8","type":"template","z":"5847b7aa62131d37","name":"","field":"payload","fieldType":"msg","format":"handlebars","syntax":"mustache","template":"<html>\n <head></head>\n <body>\n <h1>Hello World!</h1>\n <div id=\"dynamic_code\">{{{payload}}}</div>\n </body>\n</html>\n\n\n","output":"str","x":640,"y":1600,"wires":[["32b0393cec4f0e17","363ef86d4cbe2e2c"]]},{"id":"72166b06b9b6e397","type":"debug","z":"5847b7aa62131d37","name":"","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":620,"y":1520,"wires":[]},{"id":"363ef86d4cbe2e2c","type":"debug","z":"5847b7aa62131d37","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":860,"y":1520,"wires":[]}]
.. but that can get a bit messy (with Template literals etc)
The best approach is to use node-red-contrib-uibuilder that allows you to create your own endpoints and serve your own html, js, css files and uses websockets for its communication between NR and your front-end page.