function comprobarLong(text, LONGMAXIMA) { var body; if (text.length > LONGMAXIMA) { body = text.substring(0, LONGMAXIMA - 2); body += ".."; return body; } else { return text; } }
No hay comentarios:
Publicar un comentario