[js] 3자리마다 콤마(,) 넣어주는 javascript 코드
function addCommas(num) { return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); } addCommas("1000") => 1,000
- Programming/Javascript
- · 2023. 2. 21.
[billboard.js] point 마우스오버시 확대 끄기
billboard.js mouserover expand disable 마우스 오버시 확대되는걸 막을때 사용 point: { focus: { expand: { enabled: false } } }
- Programming/Javascript
- · 2023. 1. 20.