Declaring a variable only to immediately return or throw it is considered a bad practice because it adds unnecessary complexity to the code. This practice can make the code harder to read and understand, as it introduces an extra step that doesn’t add any value. Instead of declaring a variable and then immediately returning or throwing it, it is generally better to return or throw the value directly. This makes the code cleaner, simpler, and easier to understand.
Declaring a variable only to immediately return or throw it is considered a bad practice because it adds unnecessary complexity to the code. To fix the issue, return or throw the value directly.
function computeDurationInMilliseconds(hours, minutes, seconds) {
const duration = (((hours * 60) + minutes) * 60 + seconds) * 1000;
return duration;
}
function computeDurationInMilliseconds(hours, minutes, seconds) {
return (((hours * 60) + minutes) * 60 + seconds) * 1000;
}
function doSomething() {
const myError = new Error();
throw myError;
}
function doSomething() {
throw new Error();
}