I am trying to get the full date with my function. Right now my results are "Wed Feb 14 2018", but I would like it to say "Wednesday February 2018". I want it to say the whole day and whole month. I could not find a "get fullDate" method unfortunately..
window.onload = function() {
var date = new Date();
document.getElementById("date").innerHTML = date.toDateString();
}
<div id="date"> </div>