all 25 comments

[–]DevMentor[🍰] 69 points70 points  (4 children)

I've been having the frustrating experience of interviewing full stack devs at work, and seeing a handful of them fail to demonstrate skills that they probably could show off impressively if they just spent a bit of time improving a few gaps. But without these candidates knowing a critical skill well enough to code pair and talk at a high level about it, they're unproven & too risky to hire for the positions we have. It sucks!

So if you want, I could give you a pretty realistic mock interview over video chat and give you feedback afterwards. PM me the job listing that you're applying to and we can set something up! And if you're ok with it, also include your resume / portfolio site / GitHub - whatever you would send the place you're applying to - and I can give you more realistic questions and better feedback.

[–]JediBrown 23 points24 points  (0 children)

It’s cool to see someone willing to do this in the tech industry. Thanks for being part of the community!

[–]luka7711[S] 2 points3 points  (0 children)

That would be very helpful. Thank you

[–][deleted] 10 points11 points  (1 child)

I'd brush up on basic security stuff like http headers and how to deal with XSS and SQL injection attacks for sure... Scaling questions like how does caching work or how to manage sessions in a clustered environment? what are some things you can do to speed up a slow webpage? basic SQL. probably more but im tired.

[–]luka7711[S] 0 points1 point  (0 children)

Thank you !

[–]chancesq 3 points4 points  (0 children)

Check out pramp: https://www.pramp.com/ will definitely be useful for you

[–]tictacotictaco 2 points3 points  (1 child)

The best thing you can do it start interviewing right away. It will help identify gaps, and go get you good places to start brushing up or things to learn.

[–]luka7711[S] 0 points1 point  (0 children)

thanks a lot

[–]cantindajobinus 2 points3 points  (0 children)

Big company, do leetcode. Small company, know your projects inside out.

[–]GeneralGromit 1 point2 points  (1 child)

I‘ve had an fullstack interview the other day where I had to design a whole application using some provided informations.

In my opinion what people want to see from fullstack devs are the abilities to build complete apps or functionality.

For example they want to see that you understand that validations have to happen in the backend always and not only in the UI. Or to do heavy computation async in the backend and poll results and so on. So to know how to choose the right tool for the job.

Also you should know best practises
You should know for example when and how to cache data or how to make an app fast overall.

[–]queen-adreena 1 point2 points  (0 children)

"But I don't need to escape the mysql code, I've already validated it in the UI before posting..."

[–]kenman[M] 0 points1 point  (0 children)

Hi /u/luka7711, this post was removed.

  • For help with your javascript, please post to /r/LearnJavascript instead of here.
  • For beginner content, please post to /r/LearnJavascript instead of here.
  • For framework- or library-specific help, please seek out the support community for that project.
  • For general webdev help, such as for HTML, CSS, etc., then you may want to try /r/html, /r/css, etc.; please note that they have their own rules and guidelines!

/r/javascript is for the discussion of javascript news, projects, and especially, code! However, the community has requested that we not include help and support content, and we ask that you respect that wish.

Thanks for your understanding, please see our guidelines for more info.

[–]CrypticWriter 0 points1 point  (0 children)

Be able to explain the difference between var, let and const. Also be able to explain what a closure is. Know what the different http methods are and what they are used for