/** * trim() 함수 */ String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/gi, ""); } /** * lpad(INT n, CHAR c) */ String.prototype.lpad = function(n, c) { var ss = ( this.trim() == "" ) ? "" : this; while (ss.length < n){ ss = c + "" + ss; } return ss; } /** * 초를 [분:초] 로 바꿔줌 */ Number.prototype.convertMSFromSec = function() { var sec = this % 60; //60으로 나눈 몫을 sec로 설정 var min = M..