/html-dom /Basic
GitHub 5008★

Create an element

Create new element

const ele = document.createElement('div');

Create new text node

const ele = document.createTextNode('Hello World!');

See also

Follow me on and to get more useful contents.