This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function(){ | |
alert("Hello?!"); | |
var today = new Date(); | |
var day = today.getDate(); | |
var month = today.getMonth() + 1; | |
/* January starts with zero */ | |
var year = today.getFullYear(); | |
var thisDate = month + '/' + day + '/' + year; | |
alert(thisDate); |