Contents

조회 수 6951 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

PHP에서 number_format()과 같은 역할을 하는 Javascript 함수

function number_format(str){
  str = ""+str+"";
  var retValue = "";

  for(i=0; i<str.length; i++){
    if( i > 0 && (i%3)==0 ){
      retValue = str.charAt(str.length - i -1) + "," + retValue;
    }else{
      retValue = str.charAt(str.length - i -1) + retValue;
    }
  } 
  return retValue;
}



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
489 Develop [ios] Hybrid 앱 스터디 발표 자료 file hooni 2013.09.06 13812
488 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift) file hooni 2016.03.23 7685
487 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C) file hooni 2016.03.23 1763
486 Develop [ios] How to set up clang formatter hooni 2015.09.17 1473
485 Develop [ios] GPS 이용 상태 확인 hooni 2015.04.27 1416
484 Develop [ios] GMT Date와 Local Date 변환하기 hooni 2015.04.07 917
483 Develop [ios] GCD 변수 사용 예제 hooni 2013.10.01 12151
482 Develop [ios] FlckrFeed Example App (Swift) file hooni 2016.11.27 1204
481 Develop [ios] Facebook SDK 로그인 설명 file hooni 2017.04.19 1347
480 Develop [ios] Facebook Cache 갱신하는 함수 file hooni 2017.02.27 1328
479 Develop [ios] DJBros. (DJ요맨~) file hooni 2013.04.23 28137
478 Develop [ios] Did UIScrollView End Scrolling? hooni 2016.04.19 1172
Board Pagination Prev 1 ... 53 54 55 56 57 58 59 60 61 62 ... 98 Next
/ 98