//============================================================ // 돈 숫자에 ',' 붙이기 //============================================================ function money_point(str){ //함수형 str = parseInt(str,10); str = str.toString().replace(/[^-0-9]/g,''); while(str.match(/^(-?\d+)(\d{3})/)) { str = str.replace(/^(-?\d+)(\d{3})/, '$1,$2'); } return str; } String.prototype.money_point = function(){ //프로토타입형 ..