File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,23 +18,26 @@ class ParkingSystem {
18
18
* @return {boolean }
19
19
*/
20
20
addCar ( carType ) {
21
- if ( carType === 1 && this . isBigRemaining > 0 ) {
21
+ const isBigCarAvailable = ( carType === 1 && this . isBigRemaining > 0 ) ;
22
+ if ( isBigCarAvailable ) {
22
23
this . isBigRemaining -= 1 ;
23
24
return true ;
24
25
}
25
- if ( carType === 2 && this . isMediumRemaining > 0 ) {
26
+ const isMediumCarAvailable = ( carType === 2 && this . isMediumRemaining > 0 ) ;
27
+ if ( isMediumCarAvailable ) {
26
28
this . isMediumRemaining -= 1 ;
27
29
return true ;
28
30
}
29
- if ( carType === 3 && this . isSmallRemaining > 0 ) {
31
+ const isSmallCarAvailable = ( carType === 3 && this . isSmallRemaining > 0 ) ;
32
+ if ( isSmallCarAvailable ) {
30
33
this . isSmallRemaining -= 1 ;
31
34
return true ;
32
35
}
33
36
return false ;
34
37
}
35
- }
36
38
}
37
39
40
+
38
41
/**
39
42
* Your ParkingSystem object will be instantiated and called as such:
40
43
* var obj = new ParkingSystem(big, medium, small)
You can’t perform that action at this time.
0 commit comments