mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
14 lines
231 B
JavaScript
14 lines
231 B
JavaScript
module.exports = {
|
|
'name': 'random',
|
|
'category': 'Probability',
|
|
'syntax': [
|
|
'random(min, max)'
|
|
],
|
|
'description':
|
|
'Return a random number between 0 and 1.',
|
|
'examples': [
|
|
'random()'
|
|
],
|
|
'seealso': []
|
|
};
|