I'm new to Node.js/Express.js and I've been reading a lot, but I confess that perhaps I'm still to stick into the PHP paradigm. I'm thinking to shift my site's server from PHP to Express.js, but there are certain issues that I still cannot figure out.
For example in PHP, if I wanted to dynamically build an enormous HTML table from an Object or Array I would simply do something like:
<table>
<?php foreach ($my_array as $key => $value) {
echo "<tr><td>".$key."</td><td>".$value."</td></tr>";
}?>
</table>
How would I do that in Express.js with or without Jade?
handlebarsjsand I'd set your answer as the solution? Thank you in advance