30/09/2018, 18:32

Thắc mắc dịch nghĩa về hàm Function parseInt, parseFloat trong JavaScript

Chào các anh/chị, hôm nay em có làm qua mấy cái Function parseInt, parseFloat, em thấy có dòng này hơi khó hiểu:

Note: Leading and trailing spaces are allowed.

Em đã thử đọc 2 - 3 tài liệu về 2 function này trên GG bằng tiếng Việt nhưng không thấy nhắc tới vấn đề này.
Mọi người giải đáp thắc mắc giúp em nhé.
Cảm ơn mọi người.

Bản đầy đủ về parseFloat :

Definition and Usage
The parseFloat() function parses a string and returns a floating point number.

This function determines if the first character in the specified string is a number. If it is, it parses the string until it reaches the end of the number, and returns the number as a number, not as a string.

Note: Only the first number in the string is returned!

Note: Leading and trailing spaces are allowed.

Note: If the first character cannot be converted to a number, parseFloat() returns NaN.
Nguyễn Hải Đăng viết 20:39 ngày 30/09/2018

Note: Leading and trailing spaces are allowed.

Cho phép có kí tự trắng thừa ở đầu và cuối chuỗi.
Bạn thử parse chuỗi

               (khoảng trắng này là leading space)                56      75    (trailing space)

Nó sẽ trả về kết quả là 56.

NamNH viết 20:37 ngày 30/09/2018

Cảm ơn anh đã giải đáp

Bài liên quan
0