1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-07-03 21:22:14 +02:00
Files
deka-dom-el/docs/components/examples/elements/native-dom-tree.js
2025-03-10 15:47:00 +01:00

16 lines
349 B
JavaScript

// Verbose, needs temp variables
const div = document.createElement('div');
const h1 = document.createElement('h1');
h1.textContent = 'Title';
div.append(h1);
const p = document.createElement('p');
p.textContent = 'Paragraph';
div.append(p);
// append doesn't return parent
// so chaining is not possible
// Add to DOM
document.body.append(div);