I got this code which works correctly and i want to implement into the array code below
var temadiario = 500
var horaActual = new Date().getHours();
if(horaActual >= 0 && horaActual <= 16){
document.write(temadiario+=100)
} else if(horaActual >= 17 && horaActual <= 23){
document.write(temadiario+=300)
}
what the array does is to get the number from the day of the month
what i want now is then plus 100 or 300 as above to show a different number depending on the time of the day
var temadiario=new Date().getDate()
var a=new Array()
a[1]='<b> 4557</b>'
a[2]='<b> 4905</b>'
a[3]='<b> 5308</b>'
a[4]='<b> 5742</b>'
a[5]='<b> 6263</b>'
a[6]='<b> 6631</b>'
a[7]='<b> 7088</b>'
a[8]='<b> 7517</b>'
a[9]='<b> 7993</b>'
a[10]='<b> 8321</b>'
a[11]='<b> 8872</b>'
a[12]='<b> 9246</b>'
a[13]='<b> 9619</b>'
a[14]='<b> 10189</b>'
a[15]='<b> 10683</b>'
a[16]='<b> 11065</b>'
a[17]='<b> 11341</b>'
a[18]='<b> 11582</b>'
a[19]='<b> 11842</b>'
a[20]='<b> 1237</b>'
a[21]='<b> 12677</b>'
a[22]='<b> 13148</b>'
a[23]='<b> 246</b>'
a[24]='<b> 795</b>'
a[25]='<b> 1219</b>'
a[26]='<b> 1745</b>'
a[27]='<b> 2292</b>'
a[28]='<b> 2630</b>'
a[29]='<b> 3014</b>'
a[30]='<b> 3500</b>'
a[31]='<b> 3946</b>'
document.write(a[temadiario])
var temadiario = 500
var horaActual = new Date().getHours();
if(horaActual >= 0 && horaActual <= 16){
document.write(temadiario+=100)
} else if(horaActual >= 17 && horaActual <= 23){
document.write(temadiario+=300)
}
what the array does is to get the number from the day of the month
what i want now is then plus 100 or 300 as above to show a different number depending on the time of the day
var temadiario=new Date().getDate()
var a=new Array()
a[1]='<b> 4557</b>'
a[2]='<b> 4905</b>'
a[3]='<b> 5308</b>'
a[4]='<b> 5742</b>'
a[5]='<b> 6263</b>'
a[6]='<b> 6631</b>'
a[7]='<b> 7088</b>'
a[8]='<b> 7517</b>'
a[9]='<b> 7993</b>'
a[10]='<b> 8321</b>'
a[11]='<b> 8872</b>'
a[12]='<b> 9246</b>'
a[13]='<b> 9619</b>'
a[14]='<b> 10189</b>'
a[15]='<b> 10683</b>'
a[16]='<b> 11065</b>'
a[17]='<b> 11341</b>'
a[18]='<b> 11582</b>'
a[19]='<b> 11842</b>'
a[20]='<b> 1237</b>'
a[21]='<b> 12677</b>'
a[22]='<b> 13148</b>'
a[23]='<b> 246</b>'
a[24]='<b> 795</b>'
a[25]='<b> 1219</b>'
a[26]='<b> 1745</b>'
a[27]='<b> 2292</b>'
a[28]='<b> 2630</b>'
a[29]='<b> 3014</b>'
a[30]='<b> 3500</b>'
a[31]='<b> 3946</b>'
document.write(a[temadiario])