Создаю куки, а почему то значение инпута не записывается в значение куки. Что я сделал неправильно?
<form>
<input type="text" id="first" placeholder="Введите имя">
<input type="button" id="done" value="Готово!">
</form>
<script>
var init = function() {
var expDate = new Date();
expDate.setMonth(expDate.getMonth() +1);
var cookieVal = document.getElementById("first").value;
document.cookie = "first" + "=" + cookieVal + ";path=/;expires=" + expDate.toGMTString();
var valArray = document.cookie.split(";");
return valArray[1];
}
document.getElementById("done").onclick = init;
document.getElementById("first").value = init();
</script>