Time Comparison

Time Comparison

I need to check if user has performed some form action after 10 am but before 11:45 am.

While I can easily look at hours as shown below, is there a solution my question?

  1.  if ((zoho.currenttime.getHour()  >  10)  &&  (zoho.currenttime.getHour()  <  12))
  2.     {
  3.        //some code;
  4.     }

Cheers,
John Whitney