Repository: greatfrontend/top-javascript-interview-questions Branch: main Commit: 85a7c27cc2a5 Files: 833 Total size: 1.9 MB Directory structure: gitextract_d8pnkcyw/ ├── .github/ │ └── workflows/ │ └── gen-toc.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── __template__/ │ ├── concise/ │ │ ├── en-US.mdx │ │ └── metadata.json │ └── detailed/ │ ├── en-US.mdx │ └── metadata.json ├── data/ │ └── questions.json ├── langnostic.config.ts ├── package.json ├── pnpm-workspace.yaml ├── questions/ │ ├── can-you-offer-a-use-case-for-the-new-arrow-function-syntax-how-does-this-new-syntax-differ-from-other-functions/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── describe-event-bubbling/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── describe-event-capturing/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── describe-the-difference-between-a-cookie-sessionstorage-and-localstorage/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── describe-the-difference-between-script-async-and-script-defer/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── difference-between-document-load-event-and-document-domcontentloaded-event/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── difference-between-function-person-var-person-person-and-var-person-new-person/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-ajax-in-as-much-detail-as-possible/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-event-delegation/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-function-prototype-bind/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-hoisting/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-how-jsonp-works-and-how-its-not-really-ajax/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-how-prototypal-inheritance-works/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-how-this-works-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-a-callback-function-in-asynchronous-operations/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-a-microtask-queue/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-caching-and-how-it-can-be-used-to-improve-performance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-code-coverage-and-how-it-can-be-used-to-assess-test-quality/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-content-security-policy-csp-and-how-it-enhances-security/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-cross-site-request-forgery-csrf-and-its-mitigation-techniques/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-debouncing-and-throttling/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-destructuring-assignment-for-objects-and-arrays/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-error-propagation-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-hoisting-with-regards-to-functions/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-inheritance-in-es2015-classes/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-input-validation-and-its-importance-in-security/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-lazy-loading-and-how-it-can-improve-performance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-lexical-scoping/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-partial-application/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-scope-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-tagged-templates/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-test-driven-development-tdd/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-the-prototype-pattern/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-the-singleton-pattern/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-the-spread-operator-and-its-uses/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-the-strategy-pattern/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-the-web-socket-api/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-this-binding-in-event-handlers/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-concept-of-tree-shaking-in-module-bundling/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-classical-inheritance-and-prototypal-inheritance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-documentqueryselector-and-documentgetelementbyid/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-dot-notation-and-bracket-notation-for-accessing-object-properties/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-global-scope-function-scope-and-block-scope/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-mutable-and-immutable-objects/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-shallow-copy-and-deep-copy/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-synchronous-and-asynchronous-functions/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-the-difference-between-unit-testing-integration-testing-and-end-to-end-testing/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-difference-in-hoisting-between-var-let-and-const/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-differences-between-commonjs-modules-and-es-modules/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-differences-on-the-usage-of-foo-between-function-foo-and-var-foo-function/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-the-different-states-of-a-promise/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-different-ways-the-this-keyword-can-be-bound/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-event-phases-in-a-browser/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-observer-pattern-and-its-use-cases/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── explain-the-same-origin-policy-with-regards-to-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-what-a-single-page-app-is-and-how-to-make-one-seo-friendly/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── explain-why-the-following-doesnt-work-as-an-iife-function-foo--what-needs-to-be-changed-to-properly-make-it-an-iife/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── how-can-closures-be-used-to-create-private-variables/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-avoid-problems-related-to-hoisting/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-create-custom-error-objects/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-implement-secure-authentication-and-authorization-in-javascript-applications/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-optimize-dom-manipulation-for-better-performance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-optimize-network-requests-for-better-performance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-prevent-clickjacking-attacks/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-prevent-sql-injection-vulnerabilities-in-javascript-applications/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-can-you-share-code-between-files/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── how-can-you-test-asynchronous-code-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-currying-and-partial-application-differ-from-each-other/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-iframe-on-a-page-communicate/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-sets-and-maps-handle-equality-checks-for-objects/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-abort-a-web-request-using-abortcontrollers/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-access-the-index-of-an-element-in-an-array-during-iteration/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-add-remove-and-modify-html-elements-using-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-add-remove-and-update-elements-in-an-array/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-check-if-an-object-has-a-specific-property/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-check-the-data-type-of-a-variable/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-convert-a-set-to-an-array-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-convert-a-string-to-a-number-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-create-a-constructor-function/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-detect-if-javascript-is-disabled-on-a-page/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-get-the-query-string-values-of-the-current-page-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-handle-errors-in-asynchronous-operations/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-handle-errors-using-trycatch-blocks/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-import-and-export-modules-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-make-an-http-request-using-the-fetch-api/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-manipulate-css-styles-using-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-organize-your-code-module-pattern-classical-inheritance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── how-do-you-prevent-the-default-behavior-of-an-event/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-redirect-to-a-new-page-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-reliably-determine-whether-an-object-is-empty/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-use-windowhistory-api/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-validate-form-elements-using-the-constraint-validation-api/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-do-you-write-unit-tests-for-javascript-code/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-does-hoisting-affect-function-declarations-and-expressions/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-does-javascript-garbage-collection-work/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── how-is-promiseall-different-from-promiseallsettled/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── provide-some-examples-of-how-currying-and-partial-application-can-be-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-advantage-is-there-for-using-the-arrow-syntax-for-a-method-in-a-constructor/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-callback-functions-and-how-are-they-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-default-parameters-and-how-are-they-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-design-patterns-and-why-are-they-useful/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-event-listeners-and-how-are-they-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-iterators-and-generators-and-what-are-they-used-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-javascript-object-getters-and-setters-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-javascript-object-property-flags-and-descriptors/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-javascript-polyfills-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-mocks-and-stubs-and-how-are-they-used-in-testing/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-modules-and-why-are-they-useful/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-progressive-web-applications-pwas/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-promises-and-how-do-they-work/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-proxies-in-javascript-used-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-rest-parameters-and-how-are-they-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-server-sent-events/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-sets-and-maps-and-how-are-they-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-best-practices-for-handling-sensitive-data-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-best-practices-for-writing-maintainable-and-effective-tests/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-common-performance-bottlenecks-in-javascript-applications/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-common-security-headers-and-their-purpose/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-of-the-advantages-disadvantages-of-writing-javascript-code-in-a-language-that-compiles-to-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-some-popular-javascript-testing-frameworks/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-techniques-for-reducing-reflows-and-repaints/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-tools-and-techniques-for-identifying-security-vulnerabilities-in-javascript-code/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-tools-that-can-be-used-for-javascript-testing/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-some-tools-that-can-be-used-to-measure-and-analyze-javascript-performance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-symbols-used-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-template-literals-and-how-are-they-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-advantages-and-disadvantages-of-using-ajax/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-the-advantages-of-using-the-spread-operator-with-arrays-and-objects/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-benefits-of-using-a-module-bundler/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-benefits-of-using-currying-and-partial-application/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-benefits-of-using-spread-syntax-and-how-is-it-different-from-rest-syntax/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-the-common-pitfalls-of-using-the-this-keyword/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-differences-between-es6-class-and-es5-function-constructors/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-the-differences-between-map-set-and-weakmap-weakset/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-differences-between-variables-created-using-let-var-or-const/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-the-differences-between-xmlhttprequest-and-fetch/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-different-methods-for-iterating-over-an-array/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-different-types-of-errors-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-different-types-of-testing-in-software-development/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-different-ways-to-copy-an-object-or-an-array/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-different-ways-to-make-an-api-call-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-metadata-fields-of-a-module/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-potential-issues-caused-by-hoisting/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-potential-pitfalls-of-using-closures/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-pros-and-cons-of-using-promises-instead-of-callbacks/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-are-the-various-data-types-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-the-various-ways-to-create-objects-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-web-workers-and-how-can-they-be-used-to-improve-performance/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-are-workers-in-javascript-used-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-do-you-think-of-amd-vs-commonjs/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-is-a-closure-and-how-why-would-you-use-one/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-is-asyncawait-and-how-does-it-simplify-asynchronous-code/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-cross-site-scripting-xss-and-how-can-you-prevent-it/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-currying-and-how-does-it-work/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-event-loop-what-is-the-difference-between-call-stack-and-task-queue/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-is-objectfreeze-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-objectpreventextensions-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-objectseal-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-recursion-and-how-is-it-used-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-command-pattern-and-how-is-it-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-decorator-pattern-and-how-is-it-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-definition-of-a-higher-order-function/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-a-parameter-and-an-argument/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-double-equal-and-triple-equal/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-eventpreventdefault-and-eventstoppropagation/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-innerhtml-and-textcontent/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-mouseenter-and-mouseover-event/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-settimeout-setimmediate-and-processnexttick/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-difference-between-the-window-object-and-the-document-object/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-dom-and-how-is-it-structured/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-factory-pattern-and-how-is-it-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-intl-namespace-object-for/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-module-pattern-and-how-does-it-help-with-encapsulation/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-prototype-chain-and-how-does-it-work/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-purpose-of-the-break-and-continue-statements/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-purpose-of-the-finally-block/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-purpose-of-the-new-keyword/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-purpose-of-the-switch-statement/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-spread-operator-and-how-is-it-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-ternary-operator-and-how-is-it-used/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-the-use-of-promiseall/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ └── zh-CN.mdx │ ├── what-is-use-strict-what-are-the-advantages-and-disadvantages-to-using-it/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-language-constructs-do-you-use-for-iterating-over-object-properties-and-array-items/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── what-tools-and-techniques-do-you-use-for-debugging-javascript-code/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── whats-a-typical-use-case-for-anonymous-functions/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── whats-the-difference-between-a-variable-that-is-null-undefined-or-undeclared-how-would-you-go-about-checking-for-any-of-these-states/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── whats-the-difference-between-an-attribute-and-a-property/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── whats-the-difference-between-call-and-apply/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── when-would-you-use-document-write/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── why-is-extending-built-in-javascript-objects-not-a-good-idea/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ ├── why-is-it-in-general-a-good-idea-to-leave-the-global-scope-of-a-website-as-is-and-never-touch-it/ │ │ ├── en-US.langnostic.json │ │ ├── en-US.mdx │ │ ├── metadata.json │ │ ├── pt-BR.mdx │ │ └── zh-CN.mdx │ └── why-you-might-want-to-create-static-class-members/ │ ├── en-US.langnostic.json │ ├── en-US.mdx │ ├── metadata.json │ ├── pt-BR.mdx │ └── zh-CN.mdx └── scripts/ ├── constants.ts ├── gen.ts ├── rank.ts └── types.ts ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/gen-toc.yml ================================================ name: Generate table of contents on: pull_request: push: branches: - main jobs: gen-toc: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 with: ref: ${{ github.head_ref }} - name: Install pnpm uses: pnpm/action-setup@v2 - name: Install dependencies run: pnpm install - name: Generate table of contents run: npm run gen - name: 'Commit changes if required' run: | if ! git diff --quiet README.md; then git config user.email "github-actions[bot]@users.noreply.github.com" git config user.name "GitHub Actions" git add README.md git commit -m "[auto] regenerate table of contents" git push echo "[info] Table of contents updated and committed." else echo "[info] No changes to table of contents." fi working-directory: ${{ github.workspace }} ================================================ FILE: .gitignore ================================================ # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* .pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json # Runtime data pids *.pid *.seed *.pid.lock # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # Coverage directory used by tools like istanbul coverage *.lcov # nyc test coverage .nyc_output # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt # Bower dependency directory (https://bower.io/) bower_components # node-waf configuration .lock-wscript # Compiled binary addons (https://nodejs.org/api/addons.html) build/Release # Dependency directories node_modules/ jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) web_modules/ # TypeScript cache *.tsbuildinfo # Optional npm cache directory .npm # Optional eslint cache .eslintcache # Optional stylelint cache .stylelintcache # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ .rts2_cache_es/ .rts2_cache_umd/ # Optional REPL history .node_repl_history # Output of 'npm pack' *.tgz # Yarn Integrity file .yarn-integrity # dotenv environment variable files .env .env.development.local .env.test.local .env.production.local .env.local # parcel-bundler cache (https://parceljs.org/) .cache .parcel-cache # Next.js build output .next out # Nuxt.js build / generate output .nuxt dist # Gatsby files .cache/ # Comment in the public line in if your project uses Gatsby and not Next.js # https://nextjs.org/blog/next-9-1#public-directory-support # public # vuepress build output .vuepress/dist # vuepress v2.x temp and cache directory .temp .cache # Docusaurus cache and generated files .docusaurus # Serverless directories .serverless/ # FuseBox cache .fusebox/ # DynamoDB Local files .dynamodb/ # TernJS port file .tern-port # Stores VSCode versions used for testing VSCode extensions .vscode-test # yarn v2 .yarn/cache .yarn/unplugged .yarn/build-state.yml .yarn/install-state.gz .pnp.* # Translations .langnostic ================================================ FILE: .prettierignore ================================================ README.md ================================================ FILE: .prettierrc ================================================ { "bracketSameLine": true, "printWidth": 80, "proseWrap": "never", "singleQuote": true, "trailingComma": "all" } ================================================ FILE: README.md ================================================ # Top JavaScript Interview Questions (Updated for 2025) **Updated for 2025!** This repository contains a few hundred curated JavaScript interview questions with high quality answers for acing your Front End Engineer interviews, brought to you by [GreatFrontEnd](https://www.greatfrontend.com/?utm_source=github&utm_medium=referral&utm_campaign=top-reactjs-qns&gnrs=yangshun). The questions are divided into two sections: 1. [**Top questions**](#table-of-contents-top-questions): List of the most important JavaScript interview questions that are commonly-asked during Front End Developer interviews. This README displays the concise version of the answers and links are provided to the full version of answers for further learning. If you are are short on time, start with this section. 2. [**All questions**](#table-of-contents-all-questions): Comprehensive and elaborate list of JavaScript interview questions that ranges from basic to advanced topics. The answers in this section are more concise. This section is useful if you rusty with JavaScript concepts and need a refresher. 3. [**Questions by difficulty**](#questions-by-difficulty): Questions categorized by difficulty – basic, intermediate, advanced. ---

GreatFrontEnd JavaScript Interview Questions

> Black Friday 2025 sale going on now, enjoy the largest discount of the year! [Get 30% off GreatFrontEnd Premium →](https://www.greatfrontend.com/questions/javascript-interview-questions?utm_source=github&utm_medium=referral&utm_campaign=top-js-qns&gnrs=yangshun) 💡 --- ## Table of Contents (Top Questions) This list contains the top essential questions that are frequently-asked during Front End Engineer interviews. Concise versions of the answers are presented here with links to elaborate versions for further reading. This section is great if you need a quick refresher of the most important concepts. | No. | Questions | Level | | --- | :-- | :-- | | 1 | [Explain the concept of "hoisting" in JavaScript](#explain-the-concept-of-hoisting-in-javascript) | Basic | | 2 | [What are the differences between JavaScript variables created using `let`, `var` or `const`?](#what-are-the-differences-between-javascript-variables-created-using-let-var-or-const) | Basic | | 3 | [What is the difference between `==` and `===` in JavaScript?](#what-is-the-difference-between--and--in-javascript) | Basic | | 4 | [What is the event loop in JavaScript runtimes?](#what-is-the-event-loop-in-javascript-runtimes) | Basic | | 5 | [Explain event delegation in JavaScript](#explain-event-delegation-in-javascript) | Basic | | 6 | [Explain how `this` works in JavaScript](#explain-how-this-works-in-javascript) | Basic | | 7 | [Describe the difference between a cookie, `sessionStorage` and `localStorage` in browsers](#describe-the-difference-between-a-cookie-sessionstorage-and-localstorage-in-browsers) | Basic | | 8 | [Describe the difference between ` ```
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-javascript-polyfills-for?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-javascript-polyfills-for/en-US.mdx)
### Why is extending built-in JavaScript objects not a good idea? Extending a built-in/native JavaScript object means adding properties/functions to its `prototype`. While this may seem like a good idea at first, it is dangerous in practice. Imagine your code uses a few libraries that both extend the `Array.prototype` by adding the same `contains` method, the implementations will overwrite each other and your code will have unpredictable behavior if these two methods do not work the same way. The only time you may want to extend a native object is when you want to create a polyfill, essentially providing your own implementation for a method that is part of the JavaScript specification but might not exist in the user's browser due to it being an older browser.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/why-is-extending-built-in-javascript-objects-not-a-good-idea?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/why-is-extending-built-in-javascript-objects-not-a-good-idea/en-US.mdx)
### Why is it, in general, a good idea to leave the global JavaScript scope of a website as-is and never touch it? JavaScript that is executed in the browser has access to the global scope (the `window` object). In general it's a good software engineering practice to not pollute the global namespace unless you are working on a feature that truly needs to be global – it is needed by the entire page. Several reasons to avoid touching the global scope: - **Naming conflicts**: Sharing the global scope across scripts can cause conflicts and bugs when new global variables or changes are introduced. - **Cluttered global namespace**: Keeping the global namespace minimal avoids making the codebase hard to manage and maintain. - **Scope leaks**: Unintentional references to global variables in closures or event handlers can cause memory leaks and performance issues. - **Modularity and encapsulation**: Good design promotes keeping variables and functions within their specific scopes, enhancing organization, reusability, and maintainability. - **Security concerns**: Global variables are accessible by all scripts, including potentially malicious ones, posing security risks, especially if sensitive data is stored there. - **Compatibility and portability**: Heavy reliance on global variables reduces code portability and integration ease with other libraries or frameworks. Follow these best practices to avoid global scope pollution: - **Use local variables**: Declare variables within functions or blocks using `var`, `let`, or `const` to limit their scope. - **Pass variables as function parameters**: Maintain encapsulation by passing variables as parameters instead of accessing them globally. - **Use immediately invoked function expressions (IIFE)**: Create new scopes with IIFEs to prevent adding variables to the global scope. - **Use modules**: Encapsulate code with module systems to maintain separate scopes and manageability.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/why-is-it-in-general-a-good-idea-to-leave-the-global-scope-of-a-website-as-is-and-never-touch-it?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/why-is-it-in-general-a-good-idea-to-leave-the-global-scope-of-a-website-as-is-and-never-touch-it/en-US.mdx)
### Explain the differences between CommonJS modules and ES modules in JavaScript In JavaScript, modules are reusable pieces of code that encapsulate functionality, making it easier to manage, maintain, and structure your applications. Modules allow you to break down your code into smaller, manageable parts, each with its own scope. **CommonJS** is an older module system that was initially designed for server-side JavaScript development with Node.js. It uses the `require()` function to load modules and the `module.exports` or `exports` object to define the exports of a module. ```js // my-module.js const value = 42; module.exports = { value }; // main.js const myModule = require('./my-module.js'); console.log(myModule.value); // 42 ``` **ES Modules** (ECMAScript Modules) are the standardized module system introduced in ES6 (ECMAScript 2015). They use the `import` and `export` statements to handle module dependencies. ```js // my-module.js export const value = 42; // main.js import { value } from './my-module.js'; console.log(value); // 42 ``` **CommonJS vs ES modules** | Feature | CommonJS | ES modules | | --- | --- | --- | | Module Syntax | `require()` for importing `module.exports` for exporting | `import` for importing `export` for exporting | | Environment | Primarily used in Node.js for server-side development | Designed for both browser and server-side JavaScript (Node.js) | | Loading | Synchronous loading of modules | Asynchronous loading of modules | | Structure | Dynamic imports, can be conditionally called | Static imports/exports at the top level | | File extensions | `.js` (default) | `.mjs` or `.js` (with `type: "module"` in `package.json`) | | Browser support | Not natively supported in browsers | Natively supported in modern browsers | | Optimization | Limited optimization due to dynamic nature | Allows for optimizations like tree-shaking due to static structure | | Compatibility | Widely used in existing Node.js codebases and libraries | Newer standard, but gaining adoption in modern projects |
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/explain-the-differences-between-commonjs-modules-and-es-modules?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-differences-between-commonjs-modules-and-es-modules/en-US.mdx)
### What are the various data types in JavaScript? In JavaScript, data types can be categorized into `primitive` and `non-primitive` types: **Primitive data types** - **Number**: Represents both integers and floating-point numbers. - **String**: Represents sequences of characters. - **Boolean**: Represents `true` or `false` values. - **Undefined**: A variable that has been declared but not assigned a value. - **Null**: Represents the intentional absence of any object value. - **Symbol**: A unique and immutable value used as object property keys. Read more in our [deep dive on `Symbol`s](https://www.greatfrontend.com/questions/quiz/what-are-symbols-used-for) - **BigInt**: Represents integers with arbitrary precision. **Non-primitive (Reference) data types** - **Object**: Used to store collections of data. - **Array**: An ordered collection of data. - **Function**: A callable object. - **Date**: Represents dates and times. - **RegExp**: Represents regular expressions. - **Map**: A collection of keyed data items. - **Set**: A collection of unique values. The primitive types store a single value, while non-primitive types can store collections of data or complex entities.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-the-various-data-types-in-javascript?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-various-data-types-in-javascript/en-US.mdx)
### What language constructs do you use for iterating over object properties and array items in JavaScript? There are multiple ways to iterate over object properties as well as arrays in JavaScript: **`for...in` loop** The `for...in` loop iterates over all enumerable properties of an object, including inherited enumerable properties. So it is important to have a check if you only want to iterate over object's own properties ```js live const obj = { a: 1, b: 2, c: 3, }; for (const key in obj) { // To avoid iterating over inherited properties if (Object.hasOwn(obj, key)) { console.log(`${key}: ${obj[key]}`); } } ``` **`Object.keys()`** `Object.keys()` returns an array of the object's own enumerable property names. You can then use a for...of loop or forEach to iterate over this array. ```js live const obj = { a: 1, b: 2, c: 3, }; Object.keys(obj).forEach((key) => { console.log(`${key}: ${obj[key]}`); }); ``` Most common ways to iterate over array are using `for` loop and `Array.prototype.forEach` method. **Using `for` loop** ```js live let array = [1, 2, 3, 4, 5, 6]; for (let index = 0; index < array.length; index++) { console.log(array[index]); } ``` **Using `Array.prototype.forEach` method** ```js live let array = [1, 2, 3, 4, 5, 6]; array.forEach((number, index) => { console.log(`${number} at index ${index}`); }); ``` **Using `for...of`** This method is the newest and most convenient way to iterate over arrays. It automatically iterates over each element without requiring you to manage the index. ```js live const numbers = [1, 2, 3, 4, 5]; for (const number of numbers) { console.log(number); } ``` There are also other inbuilt methods available which are suitable for specific scenarios for example: - `Array.prototype.filter`: You can use the `filter` method to create a new array containing only the elements that satisfy a certain condition. - `Array.prototype.map`: You can use the `map` method to create a new array based on the existing one, transforming each element with a provided function. - `Array.prototype.reduce`: You can use the `reduce` method to combine all elements into a single value by repeatedly calling a function that takes two arguments: the accumulated value and the current element.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-language-constructs-do-you-use-for-iterating-over-object-properties-and-array-items?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-language-constructs-do-you-use-for-iterating-over-object-properties-and-array-items/en-US.mdx)
### What are the benefits of using spread syntax in JavaScript and how is it different from rest syntax? **Spread syntax** (`...`) allows an iterable (like an array or string) to be expanded into individual elements. This is often used as a convenient and modern way to create new arrays or objects by combining existing ones. | Operation | Traditional | Spread | | -------------- | ------------------------------- | ---------------------- | | Array cloning | `arr.slice()` | `[...arr]` | | Array merging | `arr1.concat(arr2)` | `[...arr1, ...arr2]` | | Object cloning | `Object.assign({}, obj)` | `{ ...obj }` | | Object merging | `Object.assign({}, obj1, obj2)` | `{ ...obj1, ...obj2 }` | **Rest syntax** is the opposite of what spread syntax does. It collects a variable number of arguments into an array. This is often used in function parameters to handle a dynamic number of arguments. ```js live // Using rest syntax in a function function sum(...numbers) { return numbers.reduce((total, num) => total + num, 0); } console.log(sum(1, 2, 3)); // Output: 6 ```
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-the-benefits-of-using-spread-syntax-and-how-is-it-different-from-rest-syntax?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-benefits-of-using-spread-syntax-and-how-is-it-different-from-rest-syntax/en-US.mdx)
### What are iterators and generators in JavaScript and what are they used for? In JavaScript, iterators and generators are powerful tools for managing sequences of data and controlling the flow of execution in a more flexible way. **Iterators** are objects that define a sequence and potentially a return value upon its termination. It adheres to a specific interface: - An iterator object must implement a `next()` method. - The `next()` method returns an object with two properties: - `value`: The next value in the sequence. - `done`: A boolean that is `true` if the iterator has finished its sequence, otherwise `false`. Here's an example of an object implementing the iterator interface. ```js live const iterator = { current: 0, last: 5, next() { if (this.current <= this.last) { return { value: this.current++, done: false }; } else { return { value: undefined, done: true }; } }, }; let result = iterator.next(); while (!result.done) { console.log(result.value); // Logs 0, 1, 2, 3, 4, 5 result = iterator.next(); } ``` **Generators** are a special functions that **can pause execution and resume at a later point**. It uses the `function*` syntax and the `yield` keyword to control the flow of execution. When you call a generator function, it doesn't execute completely like a regular function. Instead, it returns an iterator object. Calling the `next()` method on the returned iterator advances the generator to the next `yield` statement, and the value after `yield` becomes the return value of `next()`. ```js live function* numberGenerator() { let num = 0; while (num <= 5) { yield num++; } } const gen = numberGenerator(); console.log(gen.next()); // { value: 0, done: false } console.log(gen.next()); // { value: 1, done: false } console.log(gen.next()); // { value: 2, done: false } console.log(gen.next()); // { value: 3, done: false } console.log(gen.next()); // { value: 4, done: false } console.log(gen.next()); // { value: 5, done: false } console.log(gen.next()); // { value: undefined, done: true } ``` Generators are powerful for creating iterators on-demand, especially for infinite sequences or complex iteration logic. They can be used for: - Lazy evaluation – processing elements only when needed, improving memory efficiency for large datasets. - Implementing iterators for custom data structures. - Creating asynchronous iterators for handling data streams.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-iterators-and-generators-and-what-are-they-used-for?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-iterators-and-generators-and-what-are-they-used-for/en-US.mdx)
### Explain the difference between mutable and immutable objects in JavaScript **Mutable objects** allow for modification of properties and values after creation, which is the default behavior for most objects. ```js live const mutableObject = { name: 'John', age: 30, }; // Modify the object mutableObject.name = 'Jane'; // The object has been modified console.log(mutableObject); // Output: { name: 'Jane', age: 30 } ``` **Immutable objects** cannot be directly modified after creation. Its content cannot be changed without creating an entirely new value. ```js live const immutableObject = Object.freeze({ name: 'John', age: 30, }); // Attempt to modify the object immutableObject.name = 'Jane'; // The object remains unchanged console.log(immutableObject); // Output: { name: 'John', age: 30 } ``` The key difference between mutable and immutable objects is modifiability. Immutable objects cannot be modified after they are created, while mutable objects can be.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/explain-the-difference-between-mutable-and-immutable-objects?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-mutable-and-immutable-objects/en-US.mdx)
### What is the difference between a `Map` object and a plain object in JavaScript? Both `Map` objects and plain objects in JavaScript can store key-value pairs, but they have several key differences: | Feature | `Map` | Plain object | | --- | --- | --- | | Key type | Any data type | String (or Symbol) | | Key order | Maintained | Not guaranteed | | Size property | Yes (`size`) | None | | Iteration | `forEach`, `keys()`, `values()`, `entries()` | `for...in`, `Object.keys()`, etc. | | Inheritance | No | Yes | | Performance | Generally better for larger datasets and frequent additions/deletions | Faster for small datasets and simple operations | | Serializable | No | Yes |
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript/en-US.mdx)
### What are the differences between `Map`/`Set` and `WeakMap`/`WeakSet` in JavaScript? The primary difference between `Map`/`Set` and `WeakMap`/`WeakSet` in JavaScript lies in how they handle keys. Here's a breakdown: **`Map` vs. `WeakMap`** `Map`s allows any data type (strings, numbers, objects) as keys. The key-value pairs remain in memory as long as the `Map` object itself is referenced. Thus they are suitable for general-purpose key-value storage where you want to maintain references to both keys and values. Common use cases include storing user data, configuration settings, or relationships between objects. `WeakMap`s only allows objects as keys. However, these object keys are held weakly. This means the garbage collector can remove them from memory even if the `WeakMap` itself still exists, as long as there are no other references to those objects. `WeakMap`s are ideal for scenarios where you want to associate data with objects without preventing those objects from being garbage collected. This can be useful for things like: - Caching data based on objects without preventing garbage collection of the objects themselves. - Storing private data associated with DOM nodes without affecting their lifecycle. **`Set` vs. `WeakSet`** Similar to `Map`, `Set`s allow any data type as keys. The elements within a `Set` must be unique. `Set`s are useful for storing unique values and checking for membership efficiently. Common use cases include removing duplicates from arrays or keeping track of completed tasks. On the other hand, `WeakSet` only allows objects as elements, and these object elements are held weakly, similar to `WeakMap` keys. `WeakSet`s are less commonly used, but applicable when you want a collection of unique objects without affecting their garbage collection. This might be necessary for: - Tracking DOM nodes that have been interacted with without affecting their memory management. - Implementing custom object weak references for specific use cases. **Here's a table summarizing the key differences:** | Feature | Map | WeakMap | Set | WeakSet | | --- | --- | --- | --- | --- | | Key Types | Any data type | Objects (weak references) | Any data type (unique) | Objects (weak references, unique) | | Garbage Collection | Keys and values are not garbage collected | Keys can be garbage collected if not referenced elsewhere | Elements are not garbage collected | Elements can be garbage collected if not referenced elsewhere | | Use Cases | General-purpose key-value storage | Caching, private DOM node data | Removing duplicates, membership checks | Object weak references, custom use cases | **Choosing between them** - Use `Map` and `Set` for most scenarios where you need to store key-value pairs or unique elements and want to maintain references to both the keys/elements and the values. - Use `WeakMap` and `WeakSet` cautiously in specific situations where you want to associate data with objects without affecting their garbage collection. Be aware of the implications of weak references and potential memory leaks if not used correctly.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-the-differences-between-map-set-and-weakmap-weakset?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-differences-between-map-set-and-weakmap-weakset/en-US.mdx)
### Why might you want to create static class members in JavaScript? Static class members (properties/methods) has a `static` keyword prepended. Such members cannot be directly accessed on instances of the class. Instead, they're accessed on the class itself. ```js live class Car { static noOfWheels = 4; static compare() { return 'Static method has been called.'; } } console.log(Car.noOfWheels); // 4 ``` Static members are useful under the following scenarios: - **Namespace organization**: Static properties can be used to define constants or configuration values that are specific to a class. This helps organize related data within the class namespace and prevents naming conflicts with other variables. Examples include `Math.PI`, `Math.SQRT2`. - **Helper functions**: Static methods can be used as helper functions that operate on the class itself or its instances. This can improve code readability and maintainability by separating utility logic from the core functionality of the class. Examples of frequently used static methods include `Object.assign()`, `Math.max()`. - **Singleton pattern**: In some rare cases, static properties and methods can be used to implement a singleton pattern, where only one instance of a class ever exists. However, this pattern can be tricky to manage and is generally discouraged in favor of more modern dependency injection techniques.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/why-you-might-want-to-create-static-class-members?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/why-you-might-want-to-create-static-class-members/en-US.mdx)
### What are `Symbol`s used for in JavaScript? `Symbol`s in JavaScript are a new primitive data type introduced in ES6 (ECMAScript 2015). They are unique and immutable identifiers that is primarily for object property keys to avoid name collisions. These values can be created using `Symbol(...)` function, and each `Symbol` value is guaranteed to be unique, even if they have the same key/description. `Symbol` properties are not enumerable in `for...in` loops or `Object.keys()`, making them suitable for creating private/internal object state. ```js live let sym1 = Symbol(); let sym2 = Symbol('myKey'); console.log(typeof sym1); // "symbol" console.log(sym1 === sym2); // false, because each symbol is unique let obj = {}; let sym = Symbol('uniqueKey'); obj[sym] = 'value'; console.log(obj[sym]); // "value" ``` **Note**: The `Symbol()` function must be called without the `new` keyword. It is not exactly a constructor because it can only be called as a function instead of with `new Symbol()`.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-symbols-used-for?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-symbols-used-for/en-US.mdx)
### What are server-sent events? [Server-sent events (SSE)](https://html.spec.whatwg.org/multipage/comms.html#the-eventsource-interface) is a standard that allows a web page to receive automatic updates from a server via an HTTP connection. Server-sent events are used with `EventSource` instances that opens a connection with a server and allows client to receive events from the server. Connections created by server-sent events are persistent (similar to the `WebSocket`s), however there are a few differences: | Property | `WebSocket` | `EventSource` | | --- | --- | --- | | Direction | Bi-directional – both client and server can exchange messages | Unidirectional – only server sends data | | Data type | Binary and text data | Only text | | Protocol | WebSocket protocol (`ws://`) | Regular HTTP (`http://`) | **Creating an event source** ```js const eventSource = new EventSource('/sse-stream'); ``` **Listening for events** ```js // Fired when the connection is established. eventSource.addEventListener('open', () => { console.log('Connection opened'); }); // Fired when a message is received from the server. eventSource.addEventListener('message', (event) => { console.log('Received message:', event.data); }); // Fired when an error occurs. eventSource.addEventListener('error', (error) => { console.error('Error occurred:', error); }); ``` **Sending events from server** ```js const express = require('express'); const app = express(); app.get('/sse-stream', (req, res) => { // `Content-Type` need to be set to `text/event-stream`. res.setHeader('Content-Type', 'text/event-stream'); res.setHeader('Cache-Control', 'no-cache'); res.setHeader('Connection', 'keep-alive'); // Each message should be prefixed with data. const sendEvent = (data) => res.write(`data: ${data}\n\n`); sendEvent('Hello from server'); const intervalId = setInterval(() => sendEvent(new Date().toString()), 1000); res.on('close', () => { console.log('Client closed connection'); clearInterval(intervalId); }); }); app.listen(3000, () => console.log('Server started on port 3000')); ``` In this example, the server sends a "Hello from server" message initially, and then sends the current date every second. The connection is kept alive until the client closes it
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-server-sent-events?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-server-sent-events/en-US.mdx)
### What are JavaScript object property flags and descriptors? In JavaScript, property flags and descriptors manage the behavior and attributes of object properties. **Property flags** Property flags are used to specify the behavior of a property on an object. Here are the available flags: - `writable`: Specifies whether the property can be written to. Defaults to `true`. - `enumerable`: Specifies whether the property is enumerable. Defaults to `true`. - `configurable`: Specifies whether the property can be deleted or its attributes changed. Default is `true`. **Property descriptors** These provide detailed information about an object's property, including its value and flags. They are retrieved using `Object.getOwnPropertyDescriptor()` and set using `Object.defineProperty()`. The use cases of property descriptors are as follows: - Making a property non-writable by setting `writable: false` to ensure data consistency. - Hiding a property from enumeration by setting `enumerable: false`. - Preventing property deletion and modification by setting `configurable: false`. - Freezing or sealing objects to prevent modifications globally.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-javascript-object-property-flags-and-descriptors?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-javascript-object-property-flags-and-descriptors/en-US.mdx)
### What are JavaScript object getters and setters for? JavaScript object getters and setters are used to control access to an object's properties. They provide a way to encapsulate the implementation details of a property and define custom behavior when getting or setting its value. Getters and setters are defined using the `get` and `set` keywords, respectively, followed by a function that is executed when the property is accessed or assigned a new value. Here's a code example demonstrating the use of getters and setters: ```js live const person = { _name: 'John Doe', // Private property get name() { // Getter return this._name; }, set name(newName) { // Setter if (newName.trim().length > 0) { this._name = newName; } else { console.log('Invalid name'); } }, }; // Accessing the name property using the getter console.log(person.name); // Output: 'John Doe' // Setting the name property using the setter person.name = 'Jane Smith'; // Setter is called console.log(person.name); // Output: 'Jane Smith' person.name = ''; // Setter is called, but the value is not set due to validation console.log(person.name); // Output: 'Jane Smith' ```
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-javascript-object-getters-and-setters-for?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-javascript-object-getters-and-setters-for/en-US.mdx)
### What are proxies in JavaScript used for? In JavaScript, a proxy is an object that acts as an intermediary between an object and the code. Proxies are used to intercept and customize the fundamental operations of JavaScript objects, such as property access, assignment, function invocation, and more. Here's a basic example of using a `Proxy` to log every property access: ```js live const myObject = { name: 'John', age: 42, }; const handler = { get: function (target, prop, receiver) { console.log(`Someone accessed property "${prop}"`); return target[prop]; }, }; const proxiedObject = new Proxy(myObject, handler); console.log(proxiedObject.name); // Someone accessed property "name" // 'John' console.log(proxiedObject.age); // Someone accessed property "age" // 42 ``` Use cases include: - **Property access interception**: Intercept and customize property access on an object. - **Property assignment validation**: Validate property values before they are set on the target object. - **Logging and debugging**: Create wrappers for logging and debugging interactions with an object - **Creating reactive systems**: Trigger updates in other parts of your application when object properties change (data binding). - **Data transformation**: Transforming data being set or retrieved from an object. - **Mocking and stubbing in tests**: Create mock or stub objects for testing purposes, allowing you to isolate dependencies and focus on the unit under test - **Function invocation interception**: Used to cache and return the result of frequently accessed methods if they involve network calls or computationally intensive logic, improving performance - **Dynamic property creation**: Useful for defining properties on-the-fly with default values and avoid storing redundant data in objects.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-proxies-in-javascript-used-for?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-proxies-in-javascript-used-for/en-US.mdx)
### What tools and techniques do you use for debugging JavaScript code? Some of the most commonly used tools and techniques for debugging JavaScript: - JavaScript language - `console` methods (e.g. `console.log()`, `console.error()`, `console.warn()`, `console.table()`) - `debugger` statement - Breakpoints (browser or IDE) - JavaScript frameworks - [React Devtools](https://github.com/facebook/react-devtools) - [Redux Devtools](https://github.com/gaearon/redux-devtools) - [Vue Devtools](https://github.com/vuejs/vue-devtools) - Browser developer tools - **Chrome DevTools**: The most widely used tool for debugging JavaScript. It provides a rich set of features including the ability to set breakpoints, inspect variables, view the call stack, and more. - **Firefox Developer Tools**: Similar to Chrome DevTools with its own set of features for debugging. - **Safari Web Inspector**: Provides tools for debugging on Safari. - **Edge Developer Tools**: Similar to Chrome DevTools, as Edge is now Chromium-based. - Network requests - **Postman**: Useful for debugging API calls. - **Fiddler**: Helps capture and inspect HTTP/HTTPS traffic. - **Charles Proxy**: Another tool for intercepting and debugging network calls.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-tools-and-techniques-do-you-use-for-debugging-javascript-code?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-tools-and-techniques-do-you-use-for-debugging-javascript-code/en-US.mdx)
### What are workers in JavaScript used for? Workers in JavaScript are background threads that allow you to run scripts in parallel with the main execution thread, without blocking or interfering with the user interface. Their key features include: - **Parallel processing**: Workers run in a separate thread from the main thread, allowing your web page to remain responsive to user interactions while the worker performs its tasks. It's useful for moving CPU-intensive work off the main thread and be free from JavaScript's single-threaded nature. - **Communication**: Uses `postMessage()` and `onmessage`/ `'message'` event for messaging. - **Access to web APIs**: Workers have access to various Web APIs, including `fetch()`, IndexedDB, and Web Storage, allowing them to perform tasks like data fetching and persisting data independently. - **No DOM access**: Workers cannot directly manipulate the DOM, thus cannot interact with the UI, ensuring they don't accidentally interfere with the main thread's operation. There are three main types of workers in JavaScript: - **Web workers / Dedicated workers** - Run scripts in background threads, separate from the main UI thread. - Useful for CPU-intensive tasks like data processing, calculations, etc. - Cannot directly access or manipulate the DOM. - **Service workers** - Act as network proxies, handling requests between the app and network. - Enable offline functionality, caching, and push notifications. - Runs independently of the web page, even when it's closed. - **Shared workers** - Can be shared by multiple scripts running in different windows or frames, as long as they're in the same domain. - Scripts communicate with the shared worker by sending and receiving messages. - Useful for coordinating tasks across different parts of a web page.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/what-are-workers-in-javascript-used-for?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-workers-in-javascript-used-for/en-US.mdx)
### How does JavaScript garbage collection work? Garbage collection in JavaScript is an automatic memory management mechanism that reclaims memory occupied by objects and variables that are no longer in use by the program. The two most common algorithms are mark-and-sweep and generational garbage collection. **Mark-and-sweep** The most common garbage collection algorithm used in JavaScript is the Mark-and-sweep algorithm. It operates in two phases: - **Marking phase**: The garbage collector traverses the object graph, starting from the root objects (global variables, currently executing functions, etc.), and marks all reachable objects as "in-use". - **Sweeping phase**: The garbage collector sweeps through memory, removing all unmarked objects, as they are considered unreachable and no longer needed. This algorithm effectively identifies and removes objects that have become unreachable, freeing up memory for new allocations. **Generational garbage collection** Leveraged by modern JavaScript engines, objects are divided into different generations based on their age and usage patterns. Frequently accessed objects are moved to younger generations, while less frequently used objects are promoted to older generations. This optimization reduces the overhead of garbage collection by focusing on the younger generations, where most objects are short-lived. Different JavaScript engines (differs according to browsers) implement different garbage collection algorithms and there's no standard way of doing garbage collection.
> Read the [detailed answer](https://www.greatfrontend.com/questions/quiz/how-does-javascript-garbage-collection-work?language=js&tab=quiz) on [GreatFrontEnd](https://www.greatfrontend.com?gnrs=github) which allows progress tracking, contains more code samples, and useful resources. [Back to top ↑](#table-of-contents-top-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-does-javascript-garbage-collection-work/en-US.mdx)
## All Questions with Answers ### What are the various data types in JavaScript? In JavaScript, data types can be categorized into `primitive` and `non-primitive` types: **Primitive data types** - **Number**: Represents both integers and floating-point numbers. - **String**: Represents sequences of characters. - **Boolean**: Represents `true` or `false` values. - **Undefined**: A variable that has been declared but not assigned a value. - **Null**: Represents the intentional absence of any object value. - **Symbol**: A unique and immutable value used as object property keys. Read more in our [deep dive on `Symbol`s](https://www.greatfrontend.com/questions/quiz/what-are-symbols-used-for) - **BigInt**: Represents integers with arbitrary precision. **Non-primitive (Reference) data types** - **Object**: Used to store collections of data. - **Array**: An ordered collection of data. - **Function**: A callable object. - **Date**: Represents dates and times. - **RegExp**: Represents regular expressions. - **Map**: A collection of keyed data items. - **Set**: A collection of unique values. The primitive types store a single value, while non-primitive types can store collections of data or complex entities.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-various-data-types-in-javascript/en-US.mdx)
### How do you check the data type of a variable? To check the data type of a variable in JavaScript, you can use the `typeof` operator. For example, `typeof variableName` will return a string indicating the type of the variable, such as `"string"`, `"number"`, `"boolean"`, `"object"`, `"function"`, `"undefined"`, or `"symbol"`. For arrays and `null`, you can use `Array.isArray(variableName)` and `variableName === null`, respectively.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-check-the-data-type-of-a-variable/en-US.mdx)
### What's the difference between a JavaScript variable that is: `null`, `undefined` or undeclared? | Trait | `null` | `undefined` | Undeclared | | --- | --- | --- | --- | | Meaning | Explicitly set by the developer to indicate that a variable has no value | Variable has been declared but not assigned a value | Variable has not been declared at all | | Type (via `typeof` operator) | `'object'` | `'undefined'` | `'undefined'` | | Equality Comparison | `null == undefined` is `true` | `undefined == null` is `true` | Throws a `ReferenceError` |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/whats-the-difference-between-a-variable-that-is-null-undefined-or-undeclared-how-would-you-go-about-checking-for-any-of-these-states/en-US.mdx)
### What are the differences between JavaScript variables created using `let`, `var` or `const`? In JavaScript, `let`, `var`, and `const` are all keywords used to declare variables, but they differ significantly in terms of scope, initialization rules, whether they can be redeclared or reassigned and the behavior when they are accessed before declaration: | Behavior | `var` | `let` | `const` | | --- | --- | --- | --- | | Scope | Function or Global | Block | Block | | Initialization | Optional | Optional | Required | | Redeclaration | Yes | No | No | | Reassignment | Yes | Yes | No | | Accessing before declaration | `undefined` | `ReferenceError` | `ReferenceError` |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-differences-between-variables-created-using-let-var-or-const/en-US.mdx)
### Why is it, in general, a good idea to leave the global JavaScript scope of a website as-is and never touch it? JavaScript that is executed in the browser has access to the global scope (the `window` object). In general it's a good software engineering practice to not pollute the global namespace unless you are working on a feature that truly needs to be global – it is needed by the entire page. Several reasons to avoid touching the global scope: - **Naming conflicts**: Sharing the global scope across scripts can cause conflicts and bugs when new global variables or changes are introduced. - **Cluttered global namespace**: Keeping the global namespace minimal avoids making the codebase hard to manage and maintain. - **Scope leaks**: Unintentional references to global variables in closures or event handlers can cause memory leaks and performance issues. - **Modularity and encapsulation**: Good design promotes keeping variables and functions within their specific scopes, enhancing organization, reusability, and maintainability. - **Security concerns**: Global variables are accessible by all scripts, including potentially malicious ones, posing security risks, especially if sensitive data is stored there. - **Compatibility and portability**: Heavy reliance on global variables reduces code portability and integration ease with other libraries or frameworks. Follow these best practices to avoid global scope pollution: - **Use local variables**: Declare variables within functions or blocks using `var`, `let`, or `const` to limit their scope. - **Pass variables as function parameters**: Maintain encapsulation by passing variables as parameters instead of accessing them globally. - **Use immediately invoked function expressions (IIFE)**: Create new scopes with IIFEs to prevent adding variables to the global scope. - **Use modules**: Encapsulate code with module systems to maintain separate scopes and manageability.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/why-is-it-in-general-a-good-idea-to-leave-the-global-scope-of-a-website-as-is-and-never-touch-it/en-US.mdx)
### How do you convert a string to a number in JavaScript? In JavaScript, you can convert a string to a number using several methods. The most common ones are `Number()`, `parseInt()`, `parseFloat()`, and the unary plus operator (`+`). For example, `Number("123")` converts the string `"123"` to the number `123`, and `parseInt("123.45")` converts the string `"123.45"` to the integer `123`.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-convert-a-string-to-a-number-in-javascript/en-US.mdx)
### What are template literals and how are they used? Template literals are a feature in JavaScript that allow for easier string interpolation and multi-line strings. They are enclosed by backticks (`` ` ``) instead of single or double quotes. You can embed expressions within template literals using `${expression}` syntax. Example: ```js live const myName = 'John'; const greeting = `Hello, ${myName}!`; console.log(greeting); // Output: Hello, John! ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-template-literals-and-how-are-they-used/en-US.mdx)
### Explain the concept of tagged templates Tagged templates in JavaScript allow you to parse template literals with a function. The function receives the literal strings and the values as arguments, enabling custom processing of the template. For example: ```js live function tag(strings, ...values) { return strings[0] + values[0] + strings[1] + values[1] + strings[2]; } const result = tag`Hello ${'world'}! How are ${'you'}?`; console.log(result); // "Hello world! How are you?" ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-tagged-templates/en-US.mdx)
### What is the spread operator and how is it used? The spread operator, represented by three dots (`...`), is used in JavaScript to expand iterable objects like arrays or strings into individual elements. It can also be used to spread object properties. For example, you can use it to combine arrays, copy arrays, or pass array elements as arguments to a function. ```js live const arr1 = [1, 2, 3]; const arr2 = [4, 5, 6]; const combined = [...arr1, ...arr2]; console.log(combined); // [1, 2, 3, 4, 5, 6] const obj1 = { a: 1, b: 2 }; const obj2 = { c: 3, d: 4 }; const combinedObj = { ...obj1, ...obj2 }; console.log(combinedObj); // { a: 1, b: 2, c: 3, d: 4 } ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-spread-operator-and-how-is-it-used/en-US.mdx)
### What are `Symbol`s used for in JavaScript? `Symbol`s in JavaScript are a new primitive data type introduced in ES6 (ECMAScript 2015). They are unique and immutable identifiers that is primarily for object property keys to avoid name collisions. These values can be created using `Symbol(...)` function, and each `Symbol` value is guaranteed to be unique, even if they have the same key/description. `Symbol` properties are not enumerable in `for...in` loops or `Object.keys()`, making them suitable for creating private/internal object state. ```js live let sym1 = Symbol(); let sym2 = Symbol('myKey'); console.log(typeof sym1); // "symbol" console.log(sym1 === sym2); // false, because each symbol is unique let obj = {}; let sym = Symbol('uniqueKey'); obj[sym] = 'value'; console.log(obj[sym]); // "value" ``` **Note**: The `Symbol()` function must be called without the `new` keyword. It is not exactly a constructor because it can only be called as a function instead of with `new Symbol()`.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-symbols-used-for/en-US.mdx)
### What are proxies in JavaScript used for? In JavaScript, a proxy is an object that acts as an intermediary between an object and the code. Proxies are used to intercept and customize the fundamental operations of JavaScript objects, such as property access, assignment, function invocation, and more. Here's a basic example of using a `Proxy` to log every property access: ```js live const myObject = { name: 'John', age: 42, }; const handler = { get: function (target, prop, receiver) { console.log(`Someone accessed property "${prop}"`); return target[prop]; }, }; const proxiedObject = new Proxy(myObject, handler); console.log(proxiedObject.name); // Someone accessed property "name" // 'John' console.log(proxiedObject.age); // Someone accessed property "age" // 42 ``` Use cases include: - **Property access interception**: Intercept and customize property access on an object. - **Property assignment validation**: Validate property values before they are set on the target object. - **Logging and debugging**: Create wrappers for logging and debugging interactions with an object - **Creating reactive systems**: Trigger updates in other parts of your application when object properties change (data binding). - **Data transformation**: Transforming data being set or retrieved from an object. - **Mocking and stubbing in tests**: Create mock or stub objects for testing purposes, allowing you to isolate dependencies and focus on the unit under test - **Function invocation interception**: Used to cache and return the result of frequently accessed methods if they involve network calls or computationally intensive logic, improving performance - **Dynamic property creation**: Useful for defining properties on-the-fly with default values and avoid storing redundant data in objects.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-proxies-in-javascript-used-for/en-US.mdx)
### Explain the concept of "hoisting" in JavaScript Hoisting is a JavaScript mechanism where variable and function declarations are moved ("hoisted") to the top of their containing scope during the compile phase. - **Variable declarations (`var`)**: Declarations are hoisted, but not initializations. The value of the variable is `undefined` if accessed before initialization. - **Variable declarations (`let` and `const`)**: Declarations are hoisted, but not initialized. Accessing them results in `ReferenceError` until the actual declaration is encountered. - **Function expressions (`var`)**: Declarations are hoisted, but not initializations. The value of the variable is `undefined` if accessed before initialization. - **Function declarations (`function`)**: Both declaration and definition are fully hoisted. - **Class declarations (`class`)**: Declarations are hoisted, but not initialized. Accessing them results in `ReferenceError` until the actual declaration is encountered. - **Import declarations (`import`)**: Declarations are hoisted, and side effects of importing the module are executed before the rest of the code. The following behavior summarizes the result of accessing the variables before they are declared. | Declaration | Accessing before declaration | | ------------------------------ | ---------------------------- | | `var foo` | `undefined` | | `let foo` | `ReferenceError` | | `const foo` | `ReferenceError` | | `class Foo` | `ReferenceError` | | `var foo = function() { ... }` | `undefined` | | `function foo() { ... }` | Normal | | `import` | Normal |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-hoisting/en-US.mdx)
### Explain the difference in hoisting between `var`, `let`, and `const` `var` declarations are hoisted to the top of their scope and initialized with `undefined`, allowing them to be used before their declaration. `let` and `const` declarations are also hoisted but are not initialized, resulting in a `ReferenceError` if accessed before their declaration. `const` additionally requires an initial value at the time of declaration.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-in-hoisting-between-var-let-and-const/en-US.mdx)
### How does hoisting affect function declarations and expressions? Hoisting in JavaScript means that function declarations are moved to the top of their containing scope during the compile phase, making them available throughout the entire scope. This allows you to call a function before it is defined in the code. However, function expressions are not hoisted in the same way. If you try to call a function expression before it is defined, you will get an error because the variable holding the function is hoisted but not its assignment. ```js live // Function declaration console.log(foo()); // Works fine function foo() { return 'Hello'; } // Function expression console.log(bar()); // Throws TypeError: bar is not a function var bar = function () { return 'Hello'; }; ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-does-hoisting-affect-function-declarations-and-expressions/en-US.mdx)
### What are the potential issues caused by hoisting? Hoisting can lead to unexpected behavior in JavaScript because variable and function declarations are moved to the top of their containing scope during the compilation phase. This can result in `undefined` values for variables if they are used before their declaration and can cause confusion with function declarations and expressions. For example: ```js live console.log(a); // undefined var a = 5; console.log(b); // ReferenceError: Cannot access 'b' before initialization let b = 10; ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-potential-issues-caused-by-hoisting/en-US.mdx)
### How can you avoid problems related to hoisting? To avoid problems related to hoisting, always declare variables at the top of their scope using `let` or `const` instead of `var`. This ensures that variables are block-scoped and not hoisted to the top of their containing function or global scope. Additionally, declare functions before they are called to avoid issues with function hoisting. ```js live // Use let or const let x = 10; const y = 20; console.log(x, y); // Output: 10 20 // Declare functions before calling them function myFunction() { console.log('Hello, world!'); } myFunction(); // Output: 'Hello, world!' ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-can-you-avoid-problems-related-to-hoisting/en-US.mdx)
### What is the difference between `==` and `===` in JavaScript? `==` is the abstract equality operator while `===` is the strict equality operator. The `==` operator will compare for equality after doing any necessary type conversions. The `===` operator will not do type conversion, so if two values are not the same type `===` will simply return `false`. | Operator | `==` | `===` | | --- | --- | --- | | Name | (Loose) Equality operator | Strict equality operator | | Type coercion | Yes | No | | Compares value and type | No | Yes |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-double-equal-and-triple-equal/en-US.mdx)
### What language constructs do you use for iterating over object properties and array items in JavaScript? There are multiple ways to iterate over object properties as well as arrays in JavaScript: **`for...in` loop** The `for...in` loop iterates over all enumerable properties of an object, including inherited enumerable properties. So it is important to have a check if you only want to iterate over object's own properties ```js live const obj = { a: 1, b: 2, c: 3, }; for (const key in obj) { // To avoid iterating over inherited properties if (Object.hasOwn(obj, key)) { console.log(`${key}: ${obj[key]}`); } } ``` **`Object.keys()`** `Object.keys()` returns an array of the object's own enumerable property names. You can then use a for...of loop or forEach to iterate over this array. ```js live const obj = { a: 1, b: 2, c: 3, }; Object.keys(obj).forEach((key) => { console.log(`${key}: ${obj[key]}`); }); ``` Most common ways to iterate over array are using `for` loop and `Array.prototype.forEach` method. **Using `for` loop** ```js live let array = [1, 2, 3, 4, 5, 6]; for (let index = 0; index < array.length; index++) { console.log(array[index]); } ``` **Using `Array.prototype.forEach` method** ```js live let array = [1, 2, 3, 4, 5, 6]; array.forEach((number, index) => { console.log(`${number} at index ${index}`); }); ``` **Using `for...of`** This method is the newest and most convenient way to iterate over arrays. It automatically iterates over each element without requiring you to manage the index. ```js live const numbers = [1, 2, 3, 4, 5]; for (const number of numbers) { console.log(number); } ``` There are also other inbuilt methods available which are suitable for specific scenarios for example: - `Array.prototype.filter`: You can use the `filter` method to create a new array containing only the elements that satisfy a certain condition. - `Array.prototype.map`: You can use the `map` method to create a new array based on the existing one, transforming each element with a provided function. - `Array.prototype.reduce`: You can use the `reduce` method to combine all elements into a single value by repeatedly calling a function that takes two arguments: the accumulated value and the current element.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-language-constructs-do-you-use-for-iterating-over-object-properties-and-array-items/en-US.mdx)
### What is the purpose of the `break` and `continue` statements? The `break` statement is used to exit a loop or switch statement prematurely, while the `continue` statement skips the current iteration of a loop and proceeds to the next iteration. For example, in a `for` loop, `break` will stop the loop entirely, and `continue` will skip to the next iteration. ```js live for (let i = 0; i < 10; i++) { if (i === 5) break; // exits the loop when i is 5 console.log(i); } for (let i = 0; i < 10; i++) { if (i === 5) continue; // skips the iteration when i is 5 console.log(i); } ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-purpose-of-the-break-and-continue-statements/en-US.mdx)
### What is the ternary operator and how is it used? The ternary operator is a shorthand for an `if-else` statement in JavaScript. It takes three operands: a condition, a result for true, and a result for false. The syntax is `condition ? expr1 : expr2`. For example, `let result = (a > b) ? 'a is greater' : 'b is greater';` assigns `'a is greater'` to `result` if `a` is greater than `b`, otherwise it assigns `'b is greater'`.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-ternary-operator-and-how-is-it-used/en-US.mdx)
### How do you access the index of an element in an array during iteration? To access the index of an element in an array during iteration, you can use methods like `forEach`, `map`, `for...of` with `entries`, or a traditional `for` loop. For example, using `forEach`: ```js live const array = ['a', 'b', 'c']; array.forEach((element, index) => { console.log(index, element); }); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-access-the-index-of-an-element-in-an-array-during-iteration/en-US.mdx)
### What is the purpose of the `switch` statement? The `switch` statement is used to execute one block of code among many based on the value of an expression. It is an alternative to using multiple `if...else if` statements. The `switch` statement evaluates an expression, matches the expression's value to a `case` label, and executes the associated block of code. If no `case` matches, the `default` block is executed. ```js switch (expression) { case value1: // code to be executed if expression === value1 break; case value2: // code to be executed if expression === value2 break; default: // code to be executed if no case matches } ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-purpose-of-the-switch-statement/en-US.mdx)
### What are rest parameters and how are they used? Rest parameters in JavaScript allow a function to accept an indefinite number of arguments as an array. They are denoted by three dots (`...`) followed by the name of the array. This feature is useful for functions that need to handle multiple arguments without knowing the exact number in advance. ```js live function sum(...numbers) { return numbers.reduce((acc, curr) => acc + curr, 0); } console.log(sum(1, 2, 3, 4)); // Output: 10 ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-rest-parameters-and-how-are-they-used/en-US.mdx)
### Explain the concept of the spread operator and its uses The spread operator (`...`) in JavaScript allows you to expand elements of an iterable (like an array or object) into individual elements. It is commonly used for copying arrays or objects, merging arrays or objects, and passing elements of an array as arguments to a function. ```js live // Copying an array const arr1 = [1, 2, 3]; const arr2 = [...arr1]; console.log(arr2); // Output: [1, 2, 3] // Merging arrays const arr3 = [4, 5, 6]; const mergedArray = [...arr1, ...arr3]; console.log(mergedArray); // Output: [1, 2, 3, 4, 5, 6] // Copying an object const obj1 = { a: 1, b: 2 }; const obj2 = { ...obj1 }; console.log(obj2); // Output: { a: 1, b: 2 } // Merging objects const obj3 = { c: 3, d: 4 }; const mergedObject = { ...obj1, ...obj3 }; console.log(mergedObject); // Output: { a: 1, b: 2, c: 3, d: 4 } // Passing array elements as function arguments const sum = (x, y, z) => x + y + z; const numbers = [1, 2, 3]; console.log(sum(...numbers)); // Output: 6 ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-the-spread-operator-and-its-uses/en-US.mdx)
### What are the benefits of using spread syntax in JavaScript and how is it different from rest syntax? **Spread syntax** (`...`) allows an iterable (like an array or string) to be expanded into individual elements. This is often used as a convenient and modern way to create new arrays or objects by combining existing ones. | Operation | Traditional | Spread | | -------------- | ------------------------------- | ---------------------- | | Array cloning | `arr.slice()` | `[...arr]` | | Array merging | `arr1.concat(arr2)` | `[...arr1, ...arr2]` | | Object cloning | `Object.assign({}, obj)` | `{ ...obj }` | | Object merging | `Object.assign({}, obj1, obj2)` | `{ ...obj1, ...obj2 }` | **Rest syntax** is the opposite of what spread syntax does. It collects a variable number of arguments into an array. This is often used in function parameters to handle a dynamic number of arguments. ```js live // Using rest syntax in a function function sum(...numbers) { return numbers.reduce((total, num) => total + num, 0); } console.log(sum(1, 2, 3)); // Output: 6 ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-benefits-of-using-spread-syntax-and-how-is-it-different-from-rest-syntax/en-US.mdx)
### What are iterators and generators in JavaScript and what are they used for? In JavaScript, iterators and generators are powerful tools for managing sequences of data and controlling the flow of execution in a more flexible way. **Iterators** are objects that define a sequence and potentially a return value upon its termination. It adheres to a specific interface: - An iterator object must implement a `next()` method. - The `next()` method returns an object with two properties: - `value`: The next value in the sequence. - `done`: A boolean that is `true` if the iterator has finished its sequence, otherwise `false`. Here's an example of an object implementing the iterator interface. ```js live const iterator = { current: 0, last: 5, next() { if (this.current <= this.last) { return { value: this.current++, done: false }; } else { return { value: undefined, done: true }; } }, }; let result = iterator.next(); while (!result.done) { console.log(result.value); // Logs 0, 1, 2, 3, 4, 5 result = iterator.next(); } ``` **Generators** are a special functions that **can pause execution and resume at a later point**. It uses the `function*` syntax and the `yield` keyword to control the flow of execution. When you call a generator function, it doesn't execute completely like a regular function. Instead, it returns an iterator object. Calling the `next()` method on the returned iterator advances the generator to the next `yield` statement, and the value after `yield` becomes the return value of `next()`. ```js live function* numberGenerator() { let num = 0; while (num <= 5) { yield num++; } } const gen = numberGenerator(); console.log(gen.next()); // { value: 0, done: false } console.log(gen.next()); // { value: 1, done: false } console.log(gen.next()); // { value: 2, done: false } console.log(gen.next()); // { value: 3, done: false } console.log(gen.next()); // { value: 4, done: false } console.log(gen.next()); // { value: 5, done: false } console.log(gen.next()); // { value: undefined, done: true } ``` Generators are powerful for creating iterators on-demand, especially for infinite sequences or complex iteration logic. They can be used for: - Lazy evaluation – processing elements only when needed, improving memory efficiency for large datasets. - Implementing iterators for custom data structures. - Creating asynchronous iterators for handling data streams.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-iterators-and-generators-and-what-are-they-used-for/en-US.mdx)
### Explain the differences on the usage of `foo` between `function foo() {}` and `var foo = function() {}` in JavaScript `function foo() {}` a function declaration while the `var foo = function() {}` is a function expression. The key difference is that function declarations have its body hoisted but the bodies of function expressions are not (they have the same hoisting behavior as `var`-declared variables). If you try to invoke a function expression before it is declared, you will get an `Uncaught TypeError: XXX is not a function` error. Function declarations can be called in the enclosing scope even before they are declared. ```js live foo(); // 'FOOOOO' function foo() { console.log('FOOOOO'); } ``` Function expressions if called before they are declared will result in an error. ```js live foo(); // Uncaught TypeError: foo is not a function var foo = function () { console.log('FOOOOO'); }; ``` Another key difference is in the scope of the function name. Function expressions can be named by defining it after the `function` and before the parenthesis. However when using named function expressions, the function name is only accessible within the function itself. Trying to access it outside will result in an error or `undefined`. ```js live const myFunc = function namedFunc() { console.log(namedFunc); // Works }; myFunc(); // Runs the function and logs the function reference console.log(namedFunc); // ReferenceError: namedFunc is not defined ``` **Note**: The examples uses `var` due to legacy reasons. Function expressions can be defined using `let` and `const` and the key difference is in the hoisting behavior of those keywords.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-differences-on-the-usage-of-foo-between-function-foo-and-var-foo-function/en-US.mdx)
### What is the difference between a parameter and an argument? A parameter is a variable in the declaration of a function, while an argument is the actual value passed to the function when it is called. For example, in the function `function add(a, b) { return a + b; }`, `a` and `b` are parameters. When you call `add(2, 3)`, `2` and `3` are arguments.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-a-parameter-and-an-argument/en-US.mdx)
### Explain the concept of hoisting with regards to functions Hoisting in JavaScript is a behavior where function declarations are moved to the top of their containing scope during the compile phase. This means you can call a function before it is defined in the code. However, this does not apply to function expressions or arrow functions, which are not hoisted in the same way. ```js live // Function declaration hoistedFunction(); // Works fine function hoistedFunction() { console.log('This function is hoisted'); } // Function expression nonHoistedFunction(); // Throws an error var nonHoistedFunction = function () { console.log('This function is not hoisted'); }; ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-hoisting-with-regards-to-functions/en-US.mdx)
### What's the difference between `.call` and `.apply` in JavaScript? `.call` and `.apply` are both used to invoke functions with a specific `this` context and arguments. The primary difference lies in how they accept arguments: - `.call(thisArg, arg1, arg2, ...)`: Takes arguments individually. - `.apply(thisArg, [argsArray])`: Takes arguments as an array. Assuming we have a function `add`, the function can be invoked using `.call` and `.apply` in the following manner: ```js live function add(a, b) { return a + b; } console.log(add.call(null, 1, 2)); // 3 console.log(add.apply(null, [1, 2])); // 3 ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/whats-the-difference-between-call-and-apply/en-US.mdx)
### Can you offer a use case for the new arrow => function syntax? Arrow functions provide a concise syntax for writing functions in JavaScript. They are particularly useful for maintaining the `this` context within methods and callbacks. For example, in an event handler or array method like `map`, arrow functions can simplify the code and avoid issues with `this` binding. ```js live const numbers = [1, 2, 3]; const doubled = numbers.map((n) => n * 2); console.log(doubled); // [2, 4, 6] ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/can-you-offer-a-use-case-for-the-new-arrow-function-syntax-how-does-this-new-syntax-differ-from-other-functions/en-US.mdx)
### Difference between: `function Person(){}`, `const person = Person()`, and `const person = new Person()` in JavaScript? - `function Person(){}`: A function declaration in JavaScript. It can be used as a regular function or as a constructor. - `const person = Person()`: Calls `Person` as a regular function, not a constructor. If `Person` is intended to be a constructor, this will lead to unexpected behavior. - `const person = new Person()`: Creates a new instance of `Person`, correctly utilizing the constructor function to initialize the new object. | Aspect | `function Person(){}` | `const person = Person()` | `const person = new Person()` | | --- | --- | --- | --- | | Type | Function declaration | Function call | Constructor call | | Usage | Defines a function | Invokes `Person` as a regular function | Creates a new instance of `Person` | | Instance Creation | No instance created | No instance created | New instance created | | Common Mistake | N/A | Misusing as constructor leading to `undefined` | None (when used correctly) |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/difference-between-function-person-var-person-person-and-var-person-new-person/en-US.mdx)
### What is the definition of a higher-order function in JavaScript? A higher-order function is any function that takes one or more functions as arguments, which it uses to operate on some data, and/or returns a function as a result. Higher-order functions are meant to abstract some operation that is performed repeatedly. The classic example of this is `Array.prototype.map()`, which takes an array and a function as arguments. `Array.prototype.map()` then uses this function to transform each item in the array, returning a new array with the transformed data. Other popular examples in JavaScript are `Array.prototype.forEach()`, `Array.prototype.filter()`, and `Array.prototype.reduce()`. A higher-order function doesn't just need to be manipulating arrays as there are many use cases for returning a function from another function. `Function.prototype.bind()` is an example that returns another function. Imagine a scenario where we have an array of names that we need to transform to uppercase. The imperative way will be as such: ```js live const names = ['irish', 'daisy', 'anna']; function transformNamesToUppercase(names) { const results = []; for (let i = 0; i < names.length; i++) { results.push(names[i].toUpperCase()); } return results; } console.log(transformNamesToUppercase(names)); // ['IRISH', 'DAISY', 'ANNA'] ``` Using `Array.prototype.map(transformerFn)` makes the code shorter and more declarative. ```js live const names = ['irish', 'daisy', 'anna']; function transformNamesToUppercase(names) { return names.map((name) => name.toUpperCase()); } console.log(transformNamesToUppercase(names)); // ['IRISH', 'DAISY', 'ANNA'] ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-definition-of-a-higher-order-function/en-US.mdx)
### What are callback functions and how are they used? A callback function is a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action. They are commonly used for asynchronous operations like handling events, making API calls, or reading files. For example: ```js live function fetchData(callback) { // assume an asynchronous operation to fetch data const data = { name: 'John Doe' }; callback(data); } function handleData(data) { console.log(data); } fetchData(handleData); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-callback-functions-and-how-are-they-used/en-US.mdx)
### What's a typical use case for anonymous functions in JavaScript? Anonymous function in Javascript is a function that does not have any name associated with it. They are typically used as arguments to other functions or assigned to variables. ```js live const arr = [-1, 0, 5, 6]; // The filter method is passed an anonymous function. arr.filter((x) => x > 1); // [5, 6] ``` They are often used as arguments to other functions, known as higher-order functions, which can take functions as input and return a function as output. Anonymous functions can access variables from the outer scope, a concept known as closures, allowing them to "close over" and remember the environment in which they were created. ```js live // Encapsulating Code (function () { // Some code here. })(); // Callbacks setTimeout(function () { console.log('Hello world!'); }, 1000); // Functional programming constructs const arr = [1, 2, 3]; const double = arr.map(function (el) { return el * 2; }); console.log(double); // [2, 4, 6] ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/whats-a-typical-use-case-for-anonymous-functions/en-US.mdx)
### What is recursion and how is it used in JavaScript? Recursion is a programming technique where a function calls itself to solve a problem. In JavaScript, recursion is used to solve problems that can be broken down into smaller, similar sub-problems. A base case is essential to stop the recursive calls and prevent infinite loops. For example, calculating the factorial of a number can be done using recursion: ```js live function factorial(n) { if (n === 0) { return 1; } return n * factorial(n - 1); } console.log(factorial(4)); // Output: 24 ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-recursion-and-how-is-it-used-in-javascript/en-US.mdx)
### What are default parameters and how are they used? Default parameters in JavaScript allow you to set default values for function parameters if no value or `undefined` is passed. This helps avoid `undefined` values and makes your code more robust. You can define default parameters by assigning a value to the parameter in the function definition. ```js live function greet(name = 'Guest') { console.log(`Hello, ${name}!`); } greet(); // Output: Hello, Guest! greet('Alice'); // Output: Hello, Alice! ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-default-parameters-and-how-are-they-used/en-US.mdx)
### Explain why the following doesn't work as an IIFE: `function foo(){}();`. What needs to be changed to properly make it an IIFE? The code `function foo(){}();` doesn't work as an Immediately Invoked Function Expression (IIFE) because the JavaScript parser treats `function foo(){}` as a function declaration, not an expression. To make it an IIFE, you need to wrap the function in parentheses to turn it into a function expression: `(function foo(){})();`.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-why-the-following-doesnt-work-as-an-iife-function-foo--what-needs-to-be-changed-to-properly-make-it-an-iife/en-US.mdx)
### What are the various ways to create objects in JavaScript? Creating objects in JavaScript offers several methods: - **Object literals (`{}`)**: Simplest and most popular approach. Define key-value pairs within curly braces. - **`Object()` constructor**: Use `new Object()` with dot notation to add properties. - **`Object.create()`**: Create new objects using existing objects as prototypes, inheriting properties and methods. - **Constructor functions**: Define blueprints for objects using functions, creating instances with `new`. - **ES2015 classes**: Structured syntax similar to other languages, using `class` and `constructor` keywords.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-various-ways-to-create-objects-in-javascript/en-US.mdx)
### Explain the difference between dot notation and bracket notation for accessing object properties Dot notation and bracket notation are two ways to access properties of an object in JavaScript. Dot notation is more concise and readable but can only be used with valid JavaScript identifiers. Bracket notation is more flexible and can be used with property names that are not valid identifiers, such as those containing spaces or special characters. ```js live const obj = { name: 'Alice', 'favorite color': 'blue' }; // Dot notation console.log(obj.name); // Alice // Bracket notation console.log(obj['favorite color']); // blue ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-dot-notation-and-bracket-notation-for-accessing-object-properties/en-US.mdx)
### What are the different methods for iterating over an array? There are several methods to iterate over an array in JavaScript. The most common ones include `for` loops, `forEach`, `map`, `filter`, `reduce`, and `for...of`. Each method has its own use case. For example, `for` loops are versatile and can be used for any kind of iteration, while `forEach` is specifically for executing a function on each array element. `map` is used for transforming arrays, `filter` for filtering elements, `reduce` for accumulating values, and `for...of` for iterating over iterable objects.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-different-methods-for-iterating-over-an-array/en-US.mdx)
### How do you add, remove, and update elements in an array? To add elements to an array, you can use methods like `push`, `unshift`, or `splice`. To remove elements, you can use `pop`, `shift`, or `splice`. To update elements, you can directly access the array index and assign a new value. ```js live let arr = [1, 2, 3]; // Add elements arr.push(4); // [1, 2, 3, 4] arr.unshift(0); // [0, 1, 2, 3, 4] arr.splice(2, 0, 1.5); // [0, 1, 1.5, 2, 3, 4] // Remove elements arr.pop(); // [0, 1, 1.5, 2, 3] arr.shift(); // [1, 1.5, 2, 3] arr.splice(1, 1); // [1, 2, 3] // Update elements arr[1] = 5; // [1, 5, 3] console.log(arr); // Final state: [1, 5, 3] ``` **Note**: If you try to `console.log(arr)` after each operation in some environments (like Chrome DevTools), you may only see the final state of `arr`. This happens because the console sometimes keeps a live reference to the array instead of logging its state at the exact moment. To see intermediate states properly, store snapshots using `console.log([...arr])` or print values immediately after each operation.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-add-remove-and-update-elements-in-an-array/en-US.mdx)
### What are the different ways to copy an object or an array? To copy an object or an array in JavaScript, you can use several methods. For shallow copies, you can use the spread operator (`...`) or `Object.assign()`. For deep copies, you can use `JSON.parse(JSON.stringify())` or libraries like Lodash's `_.cloneDeep()`. ```js live // Shallow copy of an array const originalArray = [1, 2, 3]; const shallowCopyArray = [...originalArray]; console.log(shallowCopyArray); // [1, 2, 3] // Shallow copy of an object const originalObject = { a: 1, b: 2 }; const shallowCopyObject = { ...originalObject }; console.log(shallowCopyObject); // { a: 1, b: 2 }; // Deep copy using JSON methods const deepCopyObject = JSON.parse(JSON.stringify(originalObject)); console.log(deepCopyObject); // { a: 1, b: 2 }; ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-different-ways-to-copy-an-object-or-an-array/en-US.mdx)
### Explain the difference between shallow copy and deep copy A shallow copy duplicates the top-level properties of an object, but nested objects are still referenced. A deep copy duplicates all levels of an object, creating entirely new instances of nested objects. For example, using `Object.assign()` creates a shallow copy, while using libraries like `Lodash` or `structuredClone()` in modern JavaScript can create deep copies. ```js live // Shallow copy example let obj1 = { a: 1, b: { c: 2 } }; let shallowCopy = Object.assign({}, obj1); shallowCopy.b.c = 3; console.log(shallowCopy.b.c); // Output: 3 console.log(obj1.b.c); // Output: 3 (original nested object changed too!) // Deep copy example let obj2 = { a: 1, b: { c: 2 } }; let deepCopy = JSON.parse(JSON.stringify(obj2)); deepCopy.b.c = 4; console.log(deepCopy.b.c); // Output: 4 console.log(obj2.b.c); // Output: 2 (original nested object remains unchanged) ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-shallow-copy-and-deep-copy/en-US.mdx)
### What are the advantages of using the spread operator with arrays and objects? The spread operator (`...`) in JavaScript allows you to easily copy arrays and objects, merge them, and add new elements or properties. It simplifies syntax and improves readability. For arrays, it can be used to concatenate or clone arrays. For objects, it can be used to merge objects or add new properties. ```js live // Arrays const arr1 = [1, 2, 3]; const arr2 = [...arr1, 4, 5]; console.log(arr2); // [1, 2, 3, 4, 5] // Objects const obj1 = { a: 1, b: 2 }; const obj2 = { ...obj1, c: 3 }; console.log(obj2); // { a: 1, b: 2, c: 3 } ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-advantages-of-using-the-spread-operator-with-arrays-and-objects/en-US.mdx)
### How do you check if an object has a specific property? To check if an object has a specific property, you can use the `in` operator or the `hasOwnProperty` method. The `in` operator checks for both own and inherited properties, while `hasOwnProperty` checks only for own properties. ```js live const obj = { key: 'value' }; // Using the `in` operator if ('key' in obj) { console.log('Property exists'); } // Using `hasOwnProperty` if (obj.hasOwnProperty('key')) { console.log('Property exists'); } ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-check-if-an-object-has-a-specific-property/en-US.mdx)
### Explain the difference between mutable and immutable objects in JavaScript **Mutable objects** allow for modification of properties and values after creation, which is the default behavior for most objects. ```js live const mutableObject = { name: 'John', age: 30, }; // Modify the object mutableObject.name = 'Jane'; // The object has been modified console.log(mutableObject); // Output: { name: 'Jane', age: 30 } ``` **Immutable objects** cannot be directly modified after creation. Its content cannot be changed without creating an entirely new value. ```js live const immutableObject = Object.freeze({ name: 'John', age: 30, }); // Attempt to modify the object immutableObject.name = 'Jane'; // The object remains unchanged console.log(immutableObject); // Output: { name: 'John', age: 30 } ``` The key difference between mutable and immutable objects is modifiability. Immutable objects cannot be modified after they are created, while mutable objects can be.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-mutable-and-immutable-objects/en-US.mdx)
### Explain the concept of destructuring assignment for objects and arrays Destructuring assignment is a syntax in JavaScript that allows you to unpack values from arrays or properties from objects into distinct variables. For arrays, you use square brackets, and for objects, you use curly braces. For example: ```js live // Array destructuring const [a, b] = [1, 2]; // Object destructuring const { name, age } = { name: 'John', age: 30 }; ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-destructuring-assignment-for-objects-and-arrays/en-US.mdx)
### What is `Object.freeze()` for? `Object.freeze()` is used to make an object immutable. Once an object is frozen, you cannot add, remove, or modify its properties. This is useful for creating constants or ensuring that an object remains unchanged throughout the program. ```js live const obj = { name: 'John' }; Object.freeze(obj); obj.name = 'Doe'; // This will not change the name property console.log(obj); // { name: 'John' } ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-objectfreeze-for/en-US.mdx)
### What is `Object.seal()` for? `Object.seal()` is used to prevent new properties from being added to an object and to mark all existing properties as non-configurable. This means you can still modify the values of existing properties, but you cannot delete them or add new ones. Doing so will throw errors in strict mode but fail silently in non-strict mode. In the following examples, you can uncomment the 'use strict' comment to see this. ```js live // 'use strict' const obj = { name: 'John' }; Object.seal(obj); obj.name = 'Jane'; // Allowed obj.age = 30; // Not allowed, throws an error in strict mode delete obj.name; // Not allowed, throws an error in strict mode console.log(obj); // { name: 'Jane } (unchanged) ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-objectseal-for/en-US.mdx)
### What is `Object.preventExtensions()` for? `Object.preventExtensions()` is a method in JavaScript that prevents new properties from being added to an object. However, it does not affect the deletion or modification of existing properties. This method is useful when you want to ensure that an object remains in a certain shape and no additional properties can be added to it. ```js live const obj = { name: 'John' }; Object.preventExtensions(obj); obj.age = 30; // This will not work, as the object is not extensible console.log(obj.age); // undefined ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-objectpreventextensions-for/en-US.mdx)
### What are JavaScript object getters and setters for? JavaScript object getters and setters are used to control access to an object's properties. They provide a way to encapsulate the implementation details of a property and define custom behavior when getting or setting its value. Getters and setters are defined using the `get` and `set` keywords, respectively, followed by a function that is executed when the property is accessed or assigned a new value. Here's a code example demonstrating the use of getters and setters: ```js live const person = { _name: 'John Doe', // Private property get name() { // Getter return this._name; }, set name(newName) { // Setter if (newName.trim().length > 0) { this._name = newName; } else { console.log('Invalid name'); } }, }; // Accessing the name property using the getter console.log(person.name); // Output: 'John Doe' // Setting the name property using the setter person.name = 'Jane Smith'; // Setter is called console.log(person.name); // Output: 'Jane Smith' person.name = ''; // Setter is called, but the value is not set due to validation console.log(person.name); // Output: 'Jane Smith' ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-javascript-object-getters-and-setters-for/en-US.mdx)
### What are JavaScript object property flags and descriptors? In JavaScript, property flags and descriptors manage the behavior and attributes of object properties. **Property flags** Property flags are used to specify the behavior of a property on an object. Here are the available flags: - `writable`: Specifies whether the property can be written to. Defaults to `true`. - `enumerable`: Specifies whether the property is enumerable. Defaults to `true`. - `configurable`: Specifies whether the property can be deleted or its attributes changed. Default is `true`. **Property descriptors** These provide detailed information about an object's property, including its value and flags. They are retrieved using `Object.getOwnPropertyDescriptor()` and set using `Object.defineProperty()`. The use cases of property descriptors are as follows: - Making a property non-writable by setting `writable: false` to ensure data consistency. - Hiding a property from enumeration by setting `enumerable: false`. - Preventing property deletion and modification by setting `configurable: false`. - Freezing or sealing objects to prevent modifications globally.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-javascript-object-property-flags-and-descriptors/en-US.mdx)
### How do you reliably determine whether an object is empty? To reliably determine whether an object is empty, you can use `Object.keys()` to check if the object has any enumerable properties. If the length of the array returned by `Object.keys()` is zero, the object is empty. ```js live const isEmpty = (obj) => Object.keys(obj).length === 0; const obj = {}; console.log(isEmpty(obj)); // true ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-reliably-determine-whether-an-object-is-empty/en-US.mdx)
### What is the event loop in JavaScript runtimes? The event loop is a concept within the JavaScript runtime environment regarding how asynchronous operations are executed within JavaScript engines. It works as such: 1. The JavaScript engine starts executing scripts, placing synchronous operations on the call stack. 2. When an asynchronous operation is encountered (e.g., `setTimeout()`, HTTP request), it is offloaded to the respective Web API or Node.js API to handle the operation in the background. 3. Once the asynchronous operation completes, its callback function is placed in the respective queues – task queues (also known as macrotask queues / callback queues) or microtask queues. We will refer to "task queue" as "macrotask queue" from here on to better differentiate from the microtask queue. 4. The event loop continuously monitors the call stack and executes items on the call stack. If/when the call stack is empty: 1. Microtask queue is processed. Microtasks include promise callbacks (`then`, `catch`, `finally`), `MutationObserver` callbacks, and calls to `queueMicrotask()`. The event loop takes the first callback from the microtask queue and pushes it to the call stack for execution. This repeats until the microtask queue is empty. 2. Macrotask queue is processed. Macrotasks include web APIs like `setTimeout()`, HTTP requests, user interface event handlers like clicks, scrolls, etc. The event loop dequeues the first callback from the macrotask queue and pushes it onto the call stack for execution. However, after a macrotask queue callback is processed, the event loop does not proceed with the next macrotask yet! The event loop first checks the microtask queue. Checking the microtask queue is necessary as microtasks have higher priority than macrotask queue callbacks. The macrotask queue callback that was just executed could have added more microtasks! 1. If the microtask queue is non-empty, process them as per the previous step. 2. If the microtask queue is empty, the next macrotask queue callback is processed. This repeats until the macrotask queue is empty. 5. This process continues indefinitely, allowing the JavaScript engine to handle both synchronous and asynchronous operations efficiently without blocking the call stack. The unfortunate truth is that it is extremely hard to explain the event loop well using only text. We recommend checking out one of the following excellent videos explaining the event loop: - [JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue](https://www.youtube.com/watch?v=eiC58R16hb8) (2024): Lydia Hallie is a popular educator on JavaScript and this is the best recent video explaining the event loop. There's also an [accompanying blog post](https://www.lydiahallie.com/blog/event-loop) for those who prefer detailed text-based explanations. - [In the Loop](https://www.youtube.com/watch?v=cCOL7MC4Pl0) (2018): Jake Archibald previously from the Chrome team provides a visual demonstration of the event loop during JSConf 2018, accounting for different types of tasks. - [What the heck is the event loop anyway?](https://www.youtube.com/watch?v=8aGhZQkoFbQ) (2014): Philip Robert's gave this epic talk at JSConf 2014 and it is one of the most viewed JavaScript videos on YouTube. We recommend watching [Lydia's video](https://www.youtube.com/watch?v=eiC58R16hb8) as it is the most modern and concise explanation standing at only 13 minutes long whereas the other videos are at least 30 minutes long. Her video is sufficient for the purpose of interviews.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-event-loop-what-is-the-difference-between-call-stack-and-task-queue/en-US.mdx)
### Explain the difference between synchronous and asynchronous functions in JavaScript Synchronous functions are blocking while asynchronous functions are not. In synchronous functions, statements complete before the next statement is run. As a result, programs containing only synchronous code are evaluated exactly in order of the statements. The execution of the program is paused if one of the statements take a very long time. ```js live function sum(a, b) { console.log('Inside sum function'); return a + b; } const result = sum(2, 3); // The program waits for sum() to complete before assigning the result console.log('Result: ', result); // Output: 5 ``` Asynchronous functions usually accept a callback as a parameter and execution continue on to the next line immediately after the asynchronous function is invoked. The callback is only invoked when the asynchronous operation is complete and the call stack is empty. Heavy duty operations such as loading data from a web server or querying a database should be done asynchronously so that the main thread can continue executing other operations instead of blocking until that long operation to complete (in the case of browsers, the UI will freeze). ```js live function fetchData(callback) { setTimeout(() => { const data = { name: 'John', age: 30 }; callback(data); // Calling the callback function with data }, 2000); // Simulating a 2-second delay } console.log('Fetching data...'); fetchData((data) => { console.log(data); // Output: { name: 'John', age: 30 } (after 2 seconds) }); console.log('Call made to fetch data'); // This will print before the data is fetched ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-synchronous-and-asynchronous-functions/en-US.mdx)
### Explain the concept of a callback function in asynchronous operations A callback function is a function passed as an argument to another function, which is then invoked inside the outer function to complete some kind of routine or action. In asynchronous operations, callbacks are used to handle tasks that take time to complete, such as network requests or file I/O, without blocking the execution of the rest of the code. For example: ```js live function fetchData(callback) { setTimeout(() => { const data = { name: 'John', age: 30 }; callback(data); }, 1000); } fetchData((data) => { console.log(data); }); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-a-callback-function-in-asynchronous-operations/en-US.mdx)
### What are Promises and how do they work? Promises in JavaScript are objects that represent the eventual completion (or failure) of an asynchronous operation and its resulting value. They have three states: `pending`, `fulfilled`, and `rejected`. You can handle the results of a promise using the `.then()` method for success and the `.catch()` method for errors. ```js live let promise = new Promise((resolve, reject) => { // asynchronous operation const success = true; if (success) { resolve('Success!'); } else { reject('Error!'); } }); promise .then((result) => { console.log(result); // 'Success!' (this will print) }) .catch((error) => { console.error(error); // 'Error!' }); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-promises-and-how-do-they-work/en-US.mdx)
### Explain the different states of a Promise A `Promise` in JavaScript can be in one of three states: `pending`, `fulfilled`, or `rejected`. When a `Promise` is created, it starts in the `pending` state. If the operation completes successfully, the `Promise` transitions to the `fulfilled` state, and if it fails, it transitions to the `rejected` state. Here's a quick example: ```js let promise = new Promise((resolve, reject) => { // some asynchronous operation if (success) { resolve('Success!'); } else { reject('Error!'); } }); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-different-states-of-a-promise/en-US.mdx)
### What are the pros and cons of using Promises instead of callbacks in JavaScript? Promises offer a cleaner alternative to callbacks, helping to avoid callback hell and making asynchronous code more readable. They facilitate writing sequential and parallel asynchronous operations with ease. However, using promises may introduce slightly more complex code.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-pros-and-cons-of-using-promises-instead-of-callbacks/en-US.mdx)
### What is the use of `Promise.all()` `Promise.all()` is a method in JavaScript that takes an array of promises and returns a single promise. This returned promise resolves when all the input promises have resolved, or it rejects if any of the input promises reject. It is useful for running multiple asynchronous operations in parallel and waiting for all of them to complete. ```js live const promise1 = Promise.resolve(3); const promise2 = 42; const promise3 = new Promise((resolve, reject) => { setTimeout(resolve, 100, 'foo'); }); Promise.all([promise1, promise2, promise3]).then((values) => { console.log(values); // [3, 42, 'foo'] }); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-use-of-promiseall/en-US.mdx)
### How is `Promise.all()` different from `Promise.allSettled()`? `Promise.all()` and `Promise.allSettled()` are both methods for handling multiple promises in JavaScript, but they behave differently. `Promise.all()` waits for all promises to resolve and fails fast if any promise rejects, returning a single rejected promise. `Promise.allSettled()`, on the other hand, waits for all promises to settle (either resolve or reject) and returns an array of objects describing the outcome of each promise.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-is-promiseall-different-from-promiseallsettled/en-US.mdx)
### What is async/await and how does it simplify asynchronous code? `async/await` is a modern syntax in JavaScript that simplifies working with promises. By using the `async` keyword before a function, you can use the `await` keyword inside that function to pause execution until a promise is resolved. This makes asynchronous code look and behave more like synchronous code, making it easier to read and maintain. ```js live async function fetchData() { try { const response = await fetch( 'https://jsonplaceholder.typicode.com/posts/1', ); const data = await response.json(); console.log(data); } catch (error) { console.error('Error fetching data:', error); } } fetchData(); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-asyncawait-and-how-does-it-simplify-asynchronous-code/en-US.mdx)
### How do you handle errors in asynchronous operations? To handle errors in asynchronous operations, you can use `try...catch` blocks with `async/await` syntax or `.catch()` method with Promises. For example, with `async/await`, you can wrap your code in a `try...catch` block to catch any errors: ```js live async function fetchData() { try { // Invalid URl const response = await fetch('https://api.example.com/data'); const data = await response.json(); console.log(data); } catch (error) { console.error('Error fetching data:', error); } } fetchData(); // Error fetching data: .... ``` With Promises, you can use the `.catch()` method: ```js live fetch('https://api.example.com/data') // Invalid URl .then((response) => response.json()) .then((data) => console.log(data)) .catch((error) => console.error('Error fetching data:', error)); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-handle-errors-in-asynchronous-operations/en-US.mdx)
### Explain the concept of a microtask queue The microtask queue is a queue of tasks that need to be executed after the currently executing script and before any other task. Microtasks are typically used for tasks that need to be executed immediately after the current operation, such as promise callbacks. The microtask queue is processed before the macrotask queue, ensuring that microtasks are executed as soon as possible.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-a-microtask-queue/en-US.mdx)
### What is the difference between `setTimeout()`, `setImmediate()`, and `process.nextTick()`? `setTimeout()` schedules a callback to run after a minimum delay. `setImmediate()` schedules a callback to run after the current event loop completes. `process.nextTick()` schedules a callback to run before the next event loop iteration begins. ```js setTimeout(() => console.log('setTimeout'), 0); setImmediate(() => console.log('setImmediate')); process.nextTick(() => console.log('nextTick')); ``` In this example, `process.nextTick()` will execute first, followed by either `setTimeout()` or `setImmediate()` depending on the environment.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-settimeout-setimmediate-and-processnexttick/en-US.mdx)
### Explain how prototypal inheritance works in JavaScript Prototypical inheritance in JavaScript is a way for objects to inherit properties and methods from other objects. Every JavaScript object has a special hidden property called `[[Prototype]]` (commonly accessed via `__proto__` or using `Object.getPrototypeOf()`) that is a reference to another object, which is called the object's "prototype". When a property is accessed on an object and if the property is not found on that object, the JavaScript engine looks at the object's `__proto__`, and the `__proto__`'s `__proto__` and so on, until it finds the property defined on one of the `__proto__`s or until it reaches the end of the prototype chain. This behavior simulates classical inheritance, but it is really more of [delegation than inheritance](https://davidwalsh.name/javascript-objects). Here's an example of prototypal inheritance: ```js live // Parent object constructor. function Animal(name) { this.name = name; } // Add a method to the parent object's prototype. Animal.prototype.makeSound = function () { console.log('The ' + this.constructor.name + ' makes a sound.'); }; // Child object constructor. function Dog(name) { Animal.call(this, name); // Call the parent constructor. } // Set the child object's prototype to be the parent's prototype. Object.setPrototypeOf(Dog.prototype, Animal.prototype); // Add a method to the child object's prototype. Dog.prototype.bark = function () { console.log('Woof!'); }; // Create a new instance of Dog. const bolt = new Dog('Bolt'); // Call methods on the child object. console.log(bolt.name); // "Bolt" bolt.makeSound(); // "The Dog makes a sound." bolt.bark(); // "Woof!" ``` Things to note are: - `.makeSound` is not defined on `Dog`, so the JavaScript engine goes up the prototype chain and finds `.makeSound` on the inherited `Animal`. - Using `Object.create()` to build the inheritance chain is no longer recommended. Use `Object.setPrototypeOf()` instead.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-how-prototypal-inheritance-works/en-US.mdx)
### What is the prototype chain and how does it work? The prototype chain is a mechanism in JavaScript that allows objects to inherit properties and methods from other objects. When you try to access a property on an object, JavaScript will first look for the property on the object itself. If it doesn't find it, it will look at the object's prototype, and then the prototype's prototype, and so on, until it either finds the property or reaches the end of the chain, which is `null`. ```js live function Person(name) { this.name = name; } Person.prototype.greet = function () { console.log(`Hello, my name is ${this.name}`); }; const alice = new Person('Alice'); alice.greet(); // "Hello, my name is Alice" ``` In this example, `alice` inherits the `greet` method from `Person.prototype`.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-prototype-chain-and-how-does-it-work/en-US.mdx)
### Explain the difference between classical inheritance and prototypal inheritance Classical inheritance is a model where classes inherit from other classes, typically seen in languages like Java and C++. Prototypal inheritance, used in JavaScript, involves objects inheriting directly from other objects. In classical inheritance, you define a class and create instances from it. In prototypal inheritance, you create an object and use it as a prototype for other objects.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-classical-inheritance-and-prototypal-inheritance/en-US.mdx)
### Explain the concept of inheritance in ES2015 classes Inheritance in ES2015 classes allows one class to extend another, enabling the child class to inherit properties and methods from the parent class. This is done using the `extends` keyword. The `super` keyword is used to call the constructor and methods of the parent class. Here's a quick example: ```js live class Animal { constructor(name) { this.name = name; } speak() { console.log(`${this.name} makes a noise.`); } } class Dog extends Animal { constructor(name, breed) { super(name); this.breed = breed; } speak() { console.log(`${this.name} barks.`); } } const dog = new Dog('Rex', 'German Shepherd'); dog.speak(); // Rex barks. ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-inheritance-in-es2015-classes/en-US.mdx)
### What is the purpose of the `new` keyword? The `new` keyword in JavaScript is used to create an instance of a user-defined object type or one of the built-in object types that has a constructor function. When you use `new`, it does four things: it creates a new object, sets the prototype, binds `this` to the new object, and returns the new object. ```js live function Person(name) { this.name = name; } const person1 = new Person('Alice'); console.log(person1.name); // Alice ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-purpose-of-the-new-keyword/en-US.mdx)
### How do you create a constructor function? To create a constructor function in JavaScript, define a regular function with a capitalized name to indicate it's a constructor. Use the `this` keyword to set properties and methods. When creating an instance, use the `new` keyword. ```js live function Person(name, age) { this.name = name; this.age = age; } const john = new Person('John', 30); console.log(john.age); // 30 ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-create-a-constructor-function/en-US.mdx)
### What are the differences between JavaScript ES2015 classes and ES5 function constructors? ES2015 introduces a new way of creating classes, which provides a more intuitive and concise way to define and work with objects and inheritance compared to the ES5 function constructor syntax. Here's an example of each: ```js // ES5 function constructor function Person(name) { this.name = name; } // ES2015 Class class Person { constructor(name) { this.name = name; } } ``` For simple constructors, they look pretty similar. The main difference in the constructor comes when using inheritance. If we want to create a `Student` class that subclasses `Person` and add a `studentId` field, this is what we have to do. ```js live // ES5 inheritance // Superclass function Person1(name) { this.name = name; } // Subclass function Student1(name, studentId) { // Call constructor of superclass to initialize superclass-derived members. Person1.call(this, name); // Initialize subclass's own members. this.studentId = studentId; } Student1.prototype = Object.create(Person1.prototype); Student1.prototype.constructor = Student1; const student1 = new Student1('John', 1234); console.log(student1.name, student1.studentId); // "John" 1234 // ES2015 inheritance // Superclass class Person2 { constructor(name) { this.name = name; } } // Subclass class Student2 extends Person2 { constructor(name, studentId) { super(name); this.studentId = studentId; } } const student2 = new Student2('Alice', 5678); console.log(student2.name, student2.studentId); // "Alice" 5678 ``` It's much more verbose to use inheritance in ES5 and the ES2015 version is easier to understand and remember. **Comparison of ES5 function constructors vs ES2015 classes** | Feature | ES5 Function Constructor | ES2015 Class | | --- | --- | --- | | Syntax | Uses function constructors and prototypes | Uses `class` keyword | | Constructor | Function with properties assigned using `this` | `constructor` method inside the class | | Method Definition | Defined on the prototype | Defined inside the class body | | Static Methods | Added directly to the constructor function | Defined using the `static` keyword | | Inheritance | Uses `Object.create()` and manually sets prototype chain | Uses `extends` keyword and `super` function | | Readability | Less intuitive and more verbose | More concise and intuitive |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-differences-between-es6-class-and-es5-function-constructors/en-US.mdx)
### What advantage is there for using the JavaScript arrow syntax for a method in a constructor? The main advantage of using an arrow function as a method inside a constructor is that the value of `this` gets set at the time of the function creation and can't change after that. When the constructor is used to create a new object, `this` will always refer to that object. For example, let's say we have a `Person` constructor that takes a first name as an argument has two methods to `console.log()` that name, one as a regular function and one as an arrow function: ```js live const Person = function (name) { this.firstName = name; this.sayName1 = function () { console.log(this.firstName); }; this.sayName2 = () => { console.log(this.firstName); }; }; const john = new Person('John'); const dave = new Person('Dave'); john.sayName1(); // John john.sayName2(); // John // The regular function can have its `this` value changed, but the arrow function cannot john.sayName1.call(dave); // Dave (because `this` is now the dave object) john.sayName2.call(dave); // John john.sayName1.apply(dave); // Dave (because `this` is now the dave object) john.sayName2.apply(dave); // John john.sayName1.bind(dave)(); // Dave (because `this` is now the dave object) john.sayName2.bind(dave)(); // John const sayNameFromWindow1 = john.sayName1; sayNameFromWindow1(); // undefined (because `this` is now the window object) const sayNameFromWindow2 = john.sayName2; sayNameFromWindow2(); // John ``` The main takeaway here is that `this` can be changed for a normal function, but `this` always stays the same for an arrow function. So even if you are passing around your arrow function to different parts of your application, you wouldn't have to worry about the value of `this` changing.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-advantage-is-there-for-using-the-arrow-syntax-for-a-method-in-a-constructor/en-US.mdx)
### Why might you want to create static class members in JavaScript? Static class members (properties/methods) has a `static` keyword prepended. Such members cannot be directly accessed on instances of the class. Instead, they're accessed on the class itself. ```js live class Car { static noOfWheels = 4; static compare() { return 'Static method has been called.'; } } console.log(Car.noOfWheels); // 4 ``` Static members are useful under the following scenarios: - **Namespace organization**: Static properties can be used to define constants or configuration values that are specific to a class. This helps organize related data within the class namespace and prevents naming conflicts with other variables. Examples include `Math.PI`, `Math.SQRT2`. - **Helper functions**: Static methods can be used as helper functions that operate on the class itself or its instances. This can improve code readability and maintainability by separating utility logic from the core functionality of the class. Examples of frequently used static methods include `Object.assign()`, `Math.max()`. - **Singleton pattern**: In some rare cases, static properties and methods can be used to implement a singleton pattern, where only one instance of a class ever exists. However, this pattern can be tricky to manage and is generally discouraged in favor of more modern dependency injection techniques.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/why-you-might-want-to-create-static-class-members/en-US.mdx)
### What is a closure in JavaScript, and how/why would you use one? In the book ["You Don't Know JS"](https://github.com/getify/You-Dont-Know-JS/tree/2nd-ed/scope-closures) (YDKJS) by Kyle Simpson, a closure is defined as follows: > Closure is when a function is able to remember and access its lexical scope even when that function is executing outside its lexical scope In simple terms, functions have access to variables that were in their scope at the time of their creation. This is what we call the function's lexical scope. A closure is a function that retains access to these variables even after the outer function has finished executing. This is like the function has a memory of its original environment. ```js live function outerFunction() { const outerVar = 'I am outside of innerFunction'; function innerFunction() { console.log(outerVar); // `innerFunction` can still access `outerVar`. } return innerFunction; } const inner = outerFunction(); // `inner` now holds a reference to `innerFunction`. inner(); // "I am outside of innerFunction" // Even though `outerFunction` has completed execution, `inner` still has access to variables defined inside `outerFunction`. ``` Key points to remember: - Closure occurs when an inner function has access to variables in its outer (lexical) scope, even when the outer function has finished executing. - Closure allows a function to **remember** the environment in which it was created, even if that environment is no longer present. - Closures are used extensively in JavaScript, such as in callbacks, event handlers, and asynchronous functions.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-a-closure-and-how-why-would-you-use-one/en-US.mdx)
### Explain the concept of lexical scoping Lexical scoping means that the scope of a variable is determined by its location within the source code, and nested functions have access to variables declared in their outer scope. For example: ```js live function outerFunction() { let outerVariable = 'I am outside!'; function innerFunction() { console.log(outerVariable); // 'I am outside!' } innerFunction(); } outerFunction(); ``` In this example, `innerFunction` can access `outerVariable` because of lexical scoping.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-lexical-scoping/en-US.mdx)
### Explain the concept of scope in JavaScript In JavaScript, scope determines the accessibility of variables and functions at different parts of the code. There are three main types of scope: global scope, function scope, and block scope. Global scope means the variable is accessible everywhere in the code. Function scope means the variable is accessible only within the function it is declared. Block scope, introduced with ES6, means the variable is accessible only within the block (e.g., within curly braces `{}`) it is declared. ```js live var globalVar = 'I am a global var'; function myFunction() { var functionVar = 'I am a function-scoped var'; if (true) { let blockVar = 'I am a block-scoped var'; console.log('Inside block:'); console.log(globalVar); // Accessible console.log(functionVar); // Accessible console.log(blockVar); // Accessible } console.log('Inside function:'); console.log(globalVar); // Accessible console.log(functionVar); // Accessible // console.log(blockVar); // Uncaught ReferenceError } myFunction(); console.log('In global scope:'); console.log(globalVar); // Accessible // console.log(functionVar); // Uncaught ReferenceError // console.log(blockVar); // Uncaught ReferenceError ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-scope-in-javascript/en-US.mdx)
### How can closures be used to create private variables? Closures in JavaScript can be used to create private variables by defining a function within another function. The inner function has access to the outer function's variables, but those variables are not accessible from outside the outer function. This allows you to encapsulate and protect the variables from being accessed or modified directly. ```js live function createCounter() { let count = 0; // private variable return { increment: function () { count++; return count; }, decrement: function () { count--; return count; }, getCount: function () { return count; }, }; } const counter = createCounter(); console.log(counter.increment()); // 1 console.log(counter.getCount()); // 1 console.log(counter.count); // undefined ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-can-closures-be-used-to-create-private-variables/en-US.mdx)
### What are the potential pitfalls of using closures? Closures can lead to memory leaks if not managed properly, especially when they capture variables that are no longer needed. They can also make debugging more difficult due to the complexity of the scope chain. Additionally, closures can cause performance issues if they are overused or used inappropriately, as they keep references to variables in their scope, which can prevent garbage collection.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-potential-pitfalls-of-using-closures/en-US.mdx)
### Explain the difference between global scope, function scope, and block scope Global scope means variables are accessible from anywhere in the code. Function scope means variables are accessible only within the function they are declared in. Block scope means variables are accessible only within the block (e.g., within `{}`) they are declared in. ```js live var globalVar = "I'm global"; // Global scope function myFunction() { var functionVar = "I'm in a function"; // Function scope if (true) { let blockVar = "I'm in a block"; // Block scope console.log(blockVar); // Accessible here } // console.log(blockVar); // Uncaught ReferenceError: blockVar is not defined } // console.log(functionVar); // Uncaught ReferenceError: functionVar is not defined myFunction(); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-global-scope-function-scope-and-block-scope/en-US.mdx)
### Explain how `this` works in JavaScript There's no simple explanation for `this`; it is one of the most confusing concepts in JavaScript because it's behavior differs from many other programming languages. The one-liner explanation of the `this` keyword is that it is a dynamic reference to the context in which a function is executed. A longer explanation is that `this` follows these rules: 1. If the `new` keyword is used when calling the function, meaning the function was used as a function constructor, the `this` inside the function is the newly-created object instance. 2. If `this` is used in a `class` `constructor`, the `this` inside the `constructor` is the newly-created object instance. 3. If `apply()`, `call()`, or `bind()` is used to call/create a function, `this` inside the function is the object that is passed in as the argument. 4. If a function is called as a method (e.g. `obj.method()`) — `this` is the object that the function is a property of. 5. If a function is invoked as a free function invocation, meaning it was invoked without any of the conditions present above, `this` is the global object. In the browser, the global object is the `window` object. If in strict mode (`'use strict';`), `this` will be `undefined` instead of the global object. 6. If multiple of the above rules apply, the rule that is higher wins and will set the `this` value. 7. If the function is an ES2015 arrow function, it ignores all the rules above and receives the `this` value of its surrounding scope at the time it is created. For an in-depth explanation, do check out [Arnav Aggrawal's article on Medium](https://codeburst.io/the-simple-rules-to-this-in-javascript-35d97f31bde3).
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-how-this-works-in-javascript/en-US.mdx)
### Explain `Function.prototype.bind` in JavaScript `Function.prototype.bind` is a method in JavaScript that allows you to create a new function with a specific `this` value and optional initial arguments. It's primary purpose is to: - **Binding `this` value to preserve context**: The primary purpose of `bind` is to bind the `this` value of a function to a specific object. When you call `func.bind(thisArg)`, it creates a new function with the same body as `func`, but with `this` permanently bound to `thisArg`. - **Partial application of arguments**: `bind` also allows you to pre-specify arguments for the new function. Any arguments passed to `bind` after `thisArg` will be prepended to the arguments list when the new function is called. - **Method borrowing**: `bind` allows you to borrow methods from one object and apply them to another object, even if they were not originally designed to work with that object. The `bind` method is particularly useful in scenarios where you need to ensure that a function is called with a specific `this` context, such as in event handlers, callbacks, or method borrowing.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-function-prototype-bind/en-US.mdx)
### Explain the different ways the `this` keyword can be bound The `this` keyword in JavaScript can be bound in several ways: - Default binding: In non-strict mode, `this` refers to the global object (window in browsers). In strict mode, `this` is `undefined`. - Implicit binding: When a function is called as a method of an object, `this` refers to the object. - Explicit binding: Using `call`, `apply`, or `bind` methods to explicitly set `this`. - New binding: When a function is used as a constructor with the `new` keyword, `this` refers to the newly created object. - Arrow functions: Arrow functions do not have their own `this` and inherit `this` from the surrounding lexical context.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-different-ways-the-this-keyword-can-be-bound/en-US.mdx)
### What are the common pitfalls of using the `this` keyword? The `this` keyword in JavaScript can be tricky because its value depends on how a function is called. Common pitfalls include losing the context of `this` when passing methods as callbacks, using `this` in nested functions, and misunderstanding `this` in arrow functions. To avoid these issues, you can use `.bind()`, arrow functions, or store the context in a variable.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-the-common-pitfalls-of-using-the-this-keyword/en-US.mdx)
### Explain the concept of `this` binding in event handlers In JavaScript, the `this` keyword refers to the object that is currently executing the code. In event handlers, `this` typically refers to the element that triggered the event. However, the value of `this` can change depending on how the event handler is defined and called. To ensure `this` refers to the desired object, you can use methods like `bind()`, arrow functions, or assign the context explicitly.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-concept-of-this-binding-in-event-handlers/en-US.mdx)
### What is the DOM and how is it structured? The DOM, or Document Object Model, is a programming interface for web documents. It represents the page so that programs can change the document structure, style, and content. The DOM is structured as a tree of objects, where each node represents part of the document, such as elements, attributes, and text.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-dom-and-how-is-it-structured/en-US.mdx)
### What's the difference between an "attribute" and a "property" in the DOM? Attributes are defined in the HTML and provide initial values for properties. Properties are part of the DOM and represent the current state of an element. For example, the `value` attribute of an `` element sets its initial value, while the `value` property reflects the current value as the user interacts with it.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/whats-the-difference-between-an-attribute-and-a-property/en-US.mdx)
### Explain the difference between `document.querySelector()` and `document.getElementById()` `document.querySelector()` and `document.getElementById()` are both methods used to select elements from the DOM, but they have key differences. `document.querySelector()` can select any element using a CSS selector and returns the first match, while `document.getElementById()` selects an element by its ID and returns the element with that specific ID. ```js // Using document.querySelector() const element = document.querySelector('.my-class'); // Using document.getElementById() const elementById = document.getElementById('my-id'); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-difference-between-documentqueryselector-and-documentgetelementbyid/en-US.mdx)
### How do you add, remove, and modify HTML elements using JavaScript? To add, remove, and modify HTML elements using JavaScript, you can use methods like `createElement`, `appendChild`, `removeChild`, and properties like `innerHTML` and `textContent`. For example, to add an element, you can create it using `document.createElement` and then append it to a parent element using `appendChild`. To remove an element, you can use `removeChild` on its parent. To modify an element, you can change its `innerHTML` or `textContent`. ```js // Adding an element const newElement = document.createElement('div'); newElement.textContent = 'Hello, World!'; document.body.appendChild(newElement); // Removing an element const elementToRemove = document.getElementById('elementId'); elementToRemove.parentNode.removeChild(elementToRemove); // Modifying an element const elementToModify = document.getElementById('elementId'); elementToModify.innerHTML = 'New Content'; ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-add-remove-and-modify-html-elements-using-javascript/en-US.mdx)
### What are event listeners and how are they used? Event listeners are functions that wait for specific events to occur on elements, such as clicks or key presses. They are used to execute code in response to these events. You can add an event listener to an element using the `addEventListener` method. For example: ```js document.getElementById('myButton').addEventListener('click', function () { alert('Button was clicked!'); }); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-event-listeners-and-how-are-they-used/en-US.mdx)
### Explain the event phases in a browser In a browser, events go through three phases: capturing, target, and bubbling. During the capturing phase, the event travels from the root to the target element. In the target phase, the event reaches the target element. Finally, in the bubbling phase, the event travels back up from the target element to the root. You can control event handling using `addEventListener` with the `capture` option.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-the-event-phases-in-a-browser/en-US.mdx)
### Describe event bubbling in JavaScript and browsers Event bubbling is a DOM event propagation mechanism where an event (e.g. a click), starts at the target element and bubbles up to the root of the document. This allows ancestor elements to also respond to the event. Event bubbling is essential for event delegation, where a single event handler manages events for multiple child elements, enhancing performance and code simplicity. While convenient, failing to manage event propagation properly can lead to unintended behavior, such as multiple handlers firing for a single event.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/describe-event-bubbling/en-US.mdx)
### Describe event capturing in JavaScript and browsers Event capturing is a lesser-used counterpart to [event bubbling](https://www.greatfrontend.com/questions/quiz/describe-event-bubbling) in the DOM event propagation mechanism. It follows the opposite order, where an event triggers first on the ancestor element and then travels down to the target element. Event capturing is rarely used as compared to event bubbling, but it can be used in specific scenarios where you need to intercept events at a higher level before they reach the target element. It is disabled by default but can be enabled through an option on `addEventListener()`.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/describe-event-capturing/en-US.mdx)
### Explain event delegation in JavaScript Event delegation is a technique in JavaScript where a single event listener is attached to a parent element instead of attaching event listeners to multiple child elements. When an event occurs on a child element, the event bubbles up the DOM tree, and the parent element's event listener handles the event based on the target element. Event delegation provides the following benefits: - **Improved performance**: Attaching a single event listener is more efficient than attaching multiple event listeners to individual elements, especially for large or dynamic lists. This reduces memory usage and improves overall performance. - **Simplified event handling**: With event delegation, you only need to write the event handling logic once in the parent element's event listener. This makes the code more maintainable and easier to update. - **Dynamic element support**: Event delegation automatically handles events for dynamically added or removed elements within the parent element. There's no need to manually attach or remove event listeners when the DOM structure changes However, do note that: - It is important to identify the target element that triggered the event. - Not all events can be delegated because they are not bubbled. Non-bubbling events include: `focus`, `blur`, `scroll`, `mouseenter`, `mouseleave`, `resize`, etc.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/explain-event-delegation/en-US.mdx)
### How do you prevent the default behavior of an event? To prevent the default behavior of an event in JavaScript, you can use the `preventDefault` method on the event object. For example, if you want to prevent a form from submitting, you can do the following: ```js document.querySelector('form').addEventListener('submit', function (event) { event.preventDefault(); }); ``` This method stops the default action associated with the event from occurring.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-prevent-the-default-behavior-of-an-event/en-US.mdx)
### What is the difference between `event.preventDefault()` and `event.stopPropagation()`? `event.preventDefault()` is used to prevent the default action that belongs to the event, such as preventing a form from submitting. `event.stopPropagation()` is used to stop the event from bubbling up to parent elements, preventing any parent event handlers from being executed.
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-eventpreventdefault-and-eventstoppropagation/en-US.mdx)
### What is the difference between `mouseenter` and `mouseover` event in JavaScript and browsers? The main difference lies in the bubbling behavior of `mouseenter` and `mouseover` events. `mouseenter` does not bubble while `mouseover` bubbles. `mouseenter` events do not bubble. The `mouseenter` event is triggered only when the mouse pointer enters the element itself, not its descendants. If a parent element has child elements, and the mouse pointer enters child elements, the `mouseenter` event will not be triggered on the parent element again, it's only triggered once upon entry of parent element without regard for its contents. If both parent and child have `mouseenter` listeners attached and the mouse pointer moves from the parent element to the child element, `mouseenter` will only fire for the child. `mouseover` events bubble up the DOM tree. The `mouseover` event is triggered when the mouse pointer enters the element or one of its descendants. If a parent element has child elements, and the mouse pointer enters child elements, the `mouseover` event will be triggered on the parent element again as well. If the parent element has multiple child elements, this can result in multiple event callbacks fired. If there are child elements, and the mouse pointer moves from the parent element to the child element, `mouseover` will fire for both the parent and the child. | Property | `mouseenter` | `mouseover` | | --- | --- | --- | | Bubbling | No | Yes | | Trigger | Only when entering itself | When entering itself and when entering descendants |
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-mouseenter-and-mouseover-event/en-US.mdx)
### What is the difference between `innerHTML` and `textContent`? `innerHTML` and `textContent` are both properties used to get or set the content of an HTML element, but they serve different purposes. `innerHTML` returns or sets the HTML markup contained within the element, which means it can parse and render HTML tags. On the other hand, `textContent` returns or sets the text content of the element, ignoring any HTML tags and rendering them as plain text. ```js // Example of innerHTML element.innerHTML = 'Bold Text'; // Renders as bold text // Example of textContent element.textContent = 'Bold Text'; // Renders as plain text: Bold Text ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-is-the-difference-between-innerhtml-and-textcontent/en-US.mdx)
### How do you manipulate CSS styles using JavaScript? You can manipulate CSS styles using JavaScript by accessing the `style` property of an HTML element. For example, to change the background color of a `div` element with the id `myDiv`, you can use: ```js document.getElementById('myDiv').style.backgroundColor = 'blue'; ``` You can also add, remove, or toggle CSS classes using the `classList` property: ```js document.getElementById('myDiv').classList.add('newClass'); document.getElementById('myDiv').classList.remove('oldClass'); document.getElementById('myDiv').classList.toggle('toggleClass'); ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/how-do-you-manipulate-css-styles-using-javascript/en-US.mdx)
### Describe the difference between ` ```
[Back to top ↑](#table-of-contents-all-questions)   /   [✏️ Edit answer](https://github.com/yangshun/top-javascript-interview-questions/edit/main/questions/what-are-javascript-polyfills-for/en-US.mdx)
### How do you detect if JavaScript is disabled on a page? To detect if JavaScript is disabled on a page, you can use the `