CryNet,
<script>
var data = {
"1": {
"title":"My Lesons",
"autor":"CryNet",
"date":"10.01.19",
"text":"Текст"
},
"2": {
"title":"My articles",
"autor":"CryNet",
"date":"09.01.19",
"text":"Текст текст"
}
}
var head = autor = date = text = "test";
var index = Object.keys(data).length + 1;
data[index] = { "title": head,
"autor": autor,
"date": date,
"text": text}
document.write(JSON.stringify(data, null, 4))
</script>