-
Updated
Feb 4, 2020 - JavaScript
range
Here are 420 public repositories matching this topic...
-
Updated
Nov 28, 2020 - C++
-
Updated
Jul 2, 2020 - JavaScript
-
Updated
Aug 1, 2020 - Java
-
Updated
Jul 6, 2020 - Python
-
Updated
Nov 28, 2020 - C++
-
Updated
Oct 26, 2020 - Vue
-
Updated
May 13, 2020 - C++
-
Updated
Nov 10, 2020 - JavaScript
-
Updated
Oct 31, 2020 - TypeScript
-
Updated
Oct 13, 2020 - Vim script
-
Updated
Nov 11, 2020 - C
-
Updated
Jul 2, 2020 - Java
-
Updated
Jul 13, 2020 - C++
-
Updated
Oct 28, 2020 - C
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Apr 26, 2019 - JavaScript
-
Updated
Sep 7, 2020 - JavaScript
-
Updated
Nov 28, 2020 - C#
-
Updated
Apr 2, 2020 - JavaScript
-
Updated
Mar 6, 2020 - Swift
Improve this page
Add a description, image, and links to the range topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the range topic, visit your repo's landing page and select "manage topics."
I just noticed that if you try and create a Range control which has the following props
<Range step={0.1} min={0.1} max={50} ... />it will emit aThe difference of max and min must be divisible by stepwarning.This appears to be because
(50 - 0.1) / 0.1equals498.99999999999994in JavaScript, but the expressionparseInt(res.toString(), 10)actually just returns498. Most calculat