The
return
statement ends function execution and specifies a value to be returned to the function caller.(c) MDN
🐊Putout plugin adds ability to transform to new Node.js API and apply best practices.
npm i putout @putout/plugin-return -D
- ✅ apply-early-return;
- ✅ convert-from-continue;
- ✅ convert-from-break;
- ✅ merge-with-next-sibling;
- ✅ remove-useless;
- ✅ simplify-boolean;
{
"rules": {
"return/apply-early-return": "on",
"return/convert-from-continue": "on",
"return/convert-from-break": "on",
"return/merge-with-next-sibling": "on",
"return/remove-useless": "on",
"return/simplify-boolean": "on"
}
}
In short, an early return provides functionality so the result of a conditional statement can be returned as soon as a result is available, rather than wait until the rest of the function is run.
(c) dev.to
function get(a) {
const b = 0;
{
if (a > 0)
return 5;
return 7;
}
}
function get(a) {
if (a > 0)
return 5;
return 7;
}
The
continue
statement terminates execution of the statements in the current iteration of the current or labeled loop, and continues execution of the loop with the next iteration.(c) MDN
SyntaxError: Illegal continue statement: no surrounding iteration statement
(c) MDN
Checkout in 🐊Putout Editor.
function x() {
if (a)
continue;
return b;
}
function x() {
if (a)
return;
return b;
}
The
break
statement terminates the current loop or switch statement and transfers program control to the statement following the terminated statement.(c) MDN
SyntaxError: unlabeled break must be inside loop or switch
(c) MDN
Checkout in 🐊Putout Editor.
function x() {
if (a)
break;
return false;
}
function x() {
if (a)
return;
return false;
}
Checkout in 🐊Putout Editor.
function x() {
return;
{
hello: 'world';
}
return;
5;
return;
a ? 2 : 3;
}
function x() {
return {
hello: 'world',
};
return 5;
return a ? 2 : 3;
}
const traverse = ({push}) => {
return {
ObjectExpression(path) {
push(path);
},
};
};
const traverse = ({push}) => ({
ObjectExpression(path) {
push(path);
},
});
Check out in 🐊Putout Editor.
function isA(a, b) {
if (a.length === b.length)
return true;
return false;
}
function isA(a, b) {
return a.length !== b.length;
}
MIT