JMP Time Formatting
I can't get the time format to work. According to the scripting guide the format "m/d/y h:m:s" is used for both 12hr and 24hr time... WTF? Why would I ever want a function to willy nilly give one or the other answer? How do I get this to work!
time = today(); //3619617166
formattedTime = format(time, "m/d/y h:m:s");
print(formattedTime); //"09/12/2018 5:12:46 PM"
//What I want: "09/12/2018 1
...
