//スライド内コード実行例:
alert("ここのコードが実行されます");
console.log("ログもここに表示するよ!");
console.log(3+5);
###
### //現在時刻を表示する。
var hiduke = new Date();
var month = hiduke.getMonth()+1;
var week = hiduke.getDay();
var day = hiduke.getDate();
var yobi= new Array("日","月","火","水","木","金","土");
var hour = hiduke.getHours();
var minute = hiduke.getMinutes();
var second = hiduke.getSeconds();
console.log(month+"月"+day+"日 "+yobi[week]+"曜日 "+hour+"時"+minute+"分 "+second+"秒");
###
### //微変更を可能に(分⇒「:」)
var hiduke = new Date();
var month = hiduke.getMonth()+1;
var week = hiduke.getDay();
var day = hiduke.getDate();
var yobi= new Array("日","月","火","水","木","金","土");
var hour = hiduke.getHours();
var minute = hiduke.getMinutes();
var second = hiduke.getSeconds();
console.log(month+"月"+day+"日 "+yobi[week]+"曜日 "+hour+":"+minute+"分"+second+"");
###
###