Let say I have one field resolved.time. resolved.time="07/06/17 14:19:39"
I would like to write a condition on javascript like this:
if resolved.time>24 hours{
print("true");
}
else
{
print("false");
}
How can i write this condition "if resolved.time>24 hours" on JS? Appreciate for anything help.
Thanks and regards, Okik