Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 00_.md #21

Merged
merged 1 commit into from
Mar 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Floating-point types represent real numbers and has a range of values and precision. The one downside of floating-points are they can behave abnormally during calculations and result in the loss of precision. The floating-point size depends on the platform (the browser and the OS). 32-bit OS and browser have 32 bits for number, while 64-bit have 64 bits. Therefore, it is good idea to use 32-bit numbers as it will work on any platform, including the 64-bit platforms. Floating-point types usually have a decimal and are extremely useful in JavaScript.
Floating-point types represent real numbers and have a range of values and precision. The one downside of floating-points is that they can behave abnormally during calculations and result in the loss of precision. The floating-point size depends on the platform (the browser and the OS). 32-bit OS's and browsers have 32 bits for numbers, while 64-bit have 64 bits. Therefore, it is good idea to use 32-bit numbers as they will work on any platform, including 64-bit platforms. Floating-point types usually have a decimal and are extremely useful in JavaScript.