var getTimeouts = function (timeouts) {
var timeout = +timeouts,
timeoutValue = "";
if (timeout > 0) {
if (timeout % 60 == 0) {
if (timeout == 60) {
// timeoutValue = '1 hour';
} else {
// timeoutValue = '... hours';
}
} else {
if (timeout == 1) {
// timeoutValue = '1 minute';
} else {
// timeoutValue = '... minutes';
}
}
}
return timeoutValue;
};
console.log(getTimeouts(1440)); // 24 hours