var date = new Date().toLocaleDateString("en-US");
Also, you can call method toLocaleDateString
with two parameters:
var date = new Date().toLocaleDateString("en-US", {
"year": "numeric",
"month": "numeric"
});
Article on MSDN. More about this method on MDN.