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
The code:
```typescript
if (x) {
if (y) {
// ...
}
}
```
is equivalent to
```typescript
if (x && y) {
// ...
}
```
the latter is shorter and easier to read, so let's use that.
0 commit comments