mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
14 lines
281 B
JavaScript
14 lines
281 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)'
|
|
],
|
|
'seealso': []
|
|
};
|