How to make condition like
the code will only run between
9AM to 10PM How do I make it on if statement? or whatever method you guys have?
if(timeNow >= 9PM && timeNow <= 10PM){
//do coding
}else{
//Code won't execute because its not inside of the scope.
}