- #1
- 271
- 61
Dear Computer People,
I know nothing about Java. What I understand what "Java script" means is something that one can paste into an html document or web page. What I have is a Java script code that displays a day count since 1922 December 18. Here it is.
<script>
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
function countup(yr,m,d){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy
var paststring=montharray[m-1]+" "+d+", "+yr
var difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=" Days"
document.write("The Day Count is "+difference+" at present.")
}
//enter the count up date using the format year/month/day
countup(1922,12,18)
</script>
As you can see (1922, 12, 18) is in the last line of code.
Now I would think that this day count D could be used in the function,
BLN = D*( 1749 / 51649 ) - 781 / 51649
where BLN is the "Brown Lunation Number",
and the altered code could yield an output that would appear as ( for example )
Today's Brown Lunation Number is 1075 & 48302 / 51649
If anyone can offer this Java script code, I am grateful.
I know nothing about Java. What I understand what "Java script" means is something that one can paste into an html document or web page. What I have is a Java script code that displays a day count since 1922 December 18. Here it is.
<script>
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
function countup(yr,m,d){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy
var paststring=montharray[m-1]+" "+d+", "+yr
var difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=" Days"
document.write("The Day Count is "+difference+" at present.")
}
//enter the count up date using the format year/month/day
countup(1922,12,18)
</script>
As you can see (1922, 12, 18) is in the last line of code.
Now I would think that this day count D could be used in the function,
BLN = D*( 1749 / 51649 ) - 781 / 51649
where BLN is the "Brown Lunation Number",
and the altered code could yield an output that would appear as ( for example )
Today's Brown Lunation Number is 1075 & 48302 / 51649
If anyone can offer this Java script code, I am grateful.