handlebars 천단위 콤마찍기

수돌임깅·2023년 8월 7일
0
<script>
	Handlebars.registerHelper("fmtPrice", function(price){
		return price.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") + "원";
	});
</script>
profile
초보 개발자

0개의 댓글