SOURCE

console 命令行工具 X clear

                    
>
console
function showTime(){
  //var time = new Date();
  //alert(time);
  //alert(time.getFullYear());
  //alert(time.getMonth()+1);
  //alert(time.getDate()); 
  //alert(new Date(Date.parse("2017-12-21")));
  //alert(time < new Date(Date.parse("2017-12-21")));
  alert(getLastDay("2017/11"));
  alert(getLastDay("2017-11"));
}

//格式化当前时间 yyyy-MM-dd
function formatDate(){
  return (new Date().Format("yyyy-MM-dd"));
}

function getLastDay(param){
	//等我学会了怎么写控制字符串为yyyy-MM格式了再回来收拾你
	//先应付一下
	//要求字符串里面必须有'-'
	var flag = new RegExp("-").test(param);
	if (!flag) {
		return flag;
	}
	//将字符串按照'-'进行分割为一个数组
	var pieces = param.split("-");
	return new Date(new Date(pieces[0],pieces[1],1).getTime() - 1000*60*60*24);
}
<button onclick="showTime()">显示当前时间</button>