editor-init.txt
Home
/
codeeditor-app /
elements /
code-editor /
injects /
editor-init.txt
var myDiv = document.createElement("div");
myDiv.innerText = "hello moto";
document.body.appendChild(myDiv);
var i = 0;
while (i < 10) {
console.log("hello " + i);
i++;
}
var obj = { hello: true, moto: "enabled" };
console.log(obj);