Give me the javascript code for a h1

```javascript

var h1 = document.createElement("h1");
var text = document.createTextNode("This is a heading");
h1.appendChild(text);
document.body.appendChild(h1);
```