숫자에 세자리마다 컴마찍기

숫자에 세자리마다 컴마찍기

1. 함수 선언부분

function setComma(str) {
var temp_str = String(str);

for(var i = 0 , retValue = String() , stop = temp_str.length; i < stop ; i++) retValue = ((i%3) == 0) && i != 0 ? temp_str.charAt((stop – i) -1) + “,” + retValue : temp_str.charAt((stop – i) -1) + retValue;

return retValue;
}

2. 함수 호출부분
<script type=”text/javascript”>
document.write(setComma($!projectBean.projectAmt));
< /script>원