You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are some examples demonstrating these principles:
constcalculateArea=()=>{constlength=1;constwidth=2;constarea=length+width;returnarea;};// here is where the InlineVariable stops which is the intend but also kind of stupidconstcalculateAreaWithParams=()=>{constlength=1;constwidth=2;returnlength+width;};constcalculateAreaInline=()=>{return1+2;};
The text was updated successfully, but these errors were encountered:
Please complete the InlineVariable function where it stops. While this is the intended behavior, it also misaligns the true indentation
make new one:
InlineOneTimeUsagesVariable
BEFORE
InlineOneTimeUsageVariable
/InlineAllVariable
InlineVariable
this is actually more something likeInlineImmediateVariable
Code Examples
Here are some examples demonstrating these principles:
The text was updated successfully, but these errors were encountered: