# JavaScript creating a new element

I've realized I've done quite a few articles already where I used the technique to create elements from scratch in Vanilla JavaScript.

But I've never actually gone through the basics of creating elements in JavaScript.

TLDR; You can use `document.createElement()` to create new elements.

## Creating new elements in JavaScript

When using the `createElement()` function you can pass the element you can to create, but you don't need to pass in the brackets `<>`.

Some examples:

```js
document.createElement('div');
document.createElement('aside');
document.createElement('custom');
```

Run this in JavaScript and it will create these three elements for you.

As you can see it allows known HTML element or even custom elements.

These however will not get added to the dom directly.
We can console log them to see what's happening.

![Created element in JavaScript](https://cdn.hashnode.com/res/hashnode/image/upload/v1618766006690/OSEesd6Jf.png)

Let's create a full element and add it to the dom now.

```js
let div = document.createElement('div');
div.textContent = `I'm created`;
div.style.backgroundColor = 'red';
div.id = 'custom_id';

document.body.appendChild(div);
```

And this will actually append a red div to our dom.
The red div will have a custom ID even.

![Styled element to dom in JavaScript](https://cdn.hashnode.com/res/hashnode/image/upload/v1618766226537/02HQDExYl.png)

Pretty cool right?
You can try this out yourself in the following Codepen.

%[https://codepen.io/rebelchris/pen/RwKYPBP]

### Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on [Facebook](https://www.facebook.com/DailyDevTipsBlog) or [Twitter](https://twitter.com/DailyDevTips1)

