This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ----------------- | |
| // Usage | |
| // Expected: value one is four times as likely to be chosen than value three. | |
| // And, value two is two times less likely to be chosen than value one. | |
| const options = [ | |
| new WeightedValue('Value one', 4), | |
| new WeightedValue('Value two', 2), | |
| new WeightedValue('Value three', 1) |