DEV Community

Discussion on: What are some examples of less obvious web development features/technologies worth learning?

Collapse
 
ahferroin7 profile image
Austin S. Hemmelgarn

The HTML <template> element. A lot of people just default to using complex application frameworks like React or Angular even for stuff they really don't need to just so they can get the templating functionality they provide. In reality though, if all you need is basic templating, you can get it easily by just using HTML <template>'s yourself, and it will often outperform the templating provided by many of those frameworks.