Hey Folks, can anyone suggest good JS interview re...
# random
a
Hey Folks, can anyone suggest good JS interview resources ? (concept/practical questions oriented)
a
https://www.youtube.com/playlist?list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP Watch akshay sainiโ€™s
Namastay Javascript
Season 1 and that will refresh you up with a lot of basics and mostly asked questions.
a
was looking for some practice questions ๐Ÿ˜…
๐Ÿ†— 1
He covers some questions in the video, but i think if there's some practice material, it would help in assessing and improving concepts that learnt through these resources
f
This article was originally published on html5rocks (now defunct i think) but is still my first suggestion to anyone who's preparing for JS interviews, particularly frontend web development interview. ๐Ÿ™‚ https://web.dev/howbrowserswork/
I don't think doing practice questions would help you much unless you're interviewing at a place which asks textbook JS interviews and make you do whiteboard stuff, if your fundamentals are rock solid, you can pretty much crack the interview with no formal preparation. And fundamentals get strong only by working on real stuff and reading architectural documents like one linked above.
a
thanks Kushal๐Ÿค˜
I recently found a question like, the point of this question was the
fact that instanceof only works for Objects
, these facts either one remembers through practice or usually when using in day to day work. Should i focus on such questions or good companies usually avoid such things ?
Copy code
let a = "abc";
let b = String("abc");
console.log(a instanceof String)
console.log(b instanceof String)
s
@flat-morning-91037 what do you think about this resource do you think this will help a frontend developer? Particularly for interviews https://browser.engineering/
๐Ÿ‘ 1