TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

10 JavaScript concepts you need to know for interviews

5 pointsby sunnykguptaover 7 years ago

1 comment

flavio81over 7 years ago
It is strange that the author has not included the use of Promises and the async keyword. Should be essential knowledge today.<p>&gt; Value vs. Reference — Understand how objects, arrays, and functions are copied and passed into functions. Know that the reference is what&#x27;s being copied. Understand that primitives are copied and passed by copying the value.<p>&gt; Scope — Understand the difference between global scope, function scope, and block scope. Understand which variables are available where. Know how the JavaScript engine performs variable lookup.<p>I&#x27;d say the above two are essential to know in 99% of programming languages out there.