mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
15 lines
323 B
JavaScript
15 lines
323 B
JavaScript
module.exports = {
|
|
'name': 'ifElse',
|
|
'category': 'Utils',
|
|
'syntax': [
|
|
'ifElse(conditional, trueExpr, falseExpr)'
|
|
],
|
|
'description': 'Executes a conditional expression.',
|
|
'examples': [
|
|
'ifElse(10 > 0, 1, 0)',
|
|
'ifElse("", true, false)',
|
|
'ifElse([4, 6, 0, -1], true, false)'
|
|
],
|
|
'seealso': []
|
|
};
|