Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
mojo20128143yI think he meant not extracting the `data?.getStockLevels` call into a separate variable. Also destructing is nonsense here…
-
shekyb5193y@nitwhiz man.... i joined a new company, next time I'll be the one asking for a coding assignment from them
-
@shekyb this is something I started to ask when applying for senior positions.
If I have to whiteboard, so do my interviewers. Take home exo? Yup, I ask them to do one too. Live coding? Let's switch at one point.
I usually get a straight « no » and thus I end the interview right away. When they comply, it varies from okay-ish to straight up « nothing to do here. Goodbye ».
The interview is two-way and I did a lot of them from both sides in my career. -
@shekyb Over 18 interviews (I do interviews for the sake of it, to see how others do it and stay aware of what's needed, usually for a Lead or Sr position):
11 told me immediately to fuck off
4 immediately agreed
3 agreed after discussion
Related Rants
how lazy can you be
```
const { available, quantity, deliveryDate } = {
available: data?.getStockLevels?.[0]?.available || "Unavailable",
quantity: 0,
deliveryDate: data?.getStockLevels?.[0]?.deliveryDate,
};
```
rant
lazy coding
js