JavaScript toFixed()

Jmnote (토론 | 기여)님의 2017년 7월 4일 (화) 22:29 판

1 개요

JavaScript toFixed()
console.log( (5).toFixed(2) );
// 5.00
console.log( (5.1234).toFixed(2) );
// 5.12
console.log( (5.99999).toFixed(2) );
// 6.00

2 같이 보기

3 같이 보기

4 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}