Skip to content

Commit 62862f6

Browse files
committed
qns: change qn formatting in README
1 parent c596a14 commit 62862f6

File tree

49 files changed

+4568
-4869
lines changed
  • data
  • questions
    • explain-the-concept-of-a-callback-function-in-asynchronous-operations
    • explain-the-concept-of-a-microtask-queue
    • explain-the-concept-of-caching-and-how-it-can-be-used-to-improve-performance
    • explain-the-concept-of-classes-in-es2015-and-how-they-differ-from-constructor-functions
    • explain-the-concept-of-code-coverage-and-how-it-can-be-used-to-assess-test-quality
    • explain-the-concept-of-content-security-policy-csp-and-how-it-enhances-security
    • explain-the-concept-of-cross-site-request-forgery-csrf-and-its-mitigation-techniques
    • explain-the-concept-of-debouncing-and-throttling
    • explain-the-concept-of-destructuring-assignment-for-objects-and-arrays
    • explain-the-concept-of-error-propagation-in-javascript
    • explain-the-concept-of-event-delegation
    • explain-the-concept-of-higher-order-functions
    • explain-the-concept-of-hoisting-with-regards-to-functions
    • explain-the-concept-of-inheritance-in-es2015-classes
    • explain-the-concept-of-input-validation-and-its-importance-in-security
    • explain-the-concept-of-lazy-loading-and-how-it-can-improve-performance
    • explain-the-concept-of-lexical-scoping
    • explain-the-concept-of-object-prototypes-and-prototypal-inheritance
    • explain-the-concept-of-partial-application
    • explain-the-concept-of-prototypal-inheritance-in-javascript
    • explain-the-concept-of-scope-in-javascript
    • explain-the-concept-of-tagged-templates
    • explain-the-concept-of-test-driven-development-tdd
    • explain-the-concept-of-the-prototype-pattern
    • explain-the-concept-of-the-singleton-pattern
    • explain-the-concept-of-the-spread-operator-and-its-uses
    • explain-the-concept-of-the-strategy-pattern
    • explain-the-concept-of-the-web-socket-api
    • explain-the-concept-of-this-binding-in-event-handlers
    • explain-the-concept-of-tree-shaking-in-module-bundling
    • explain-the-difference-between--and--operators
    • explain-the-difference-between-classical-inheritance-and-prototypal-inheritance
    • explain-the-difference-between-commonjs-and-es-modules
    • explain-the-difference-between-documentqueryselector-and-documentgetelementbyid
    • explain-the-difference-between-dot-notation-and-bracket-notation-for-accessing-object-properties
    • explain-the-difference-between-global-scope-function-scope-and-block-scope
    • explain-the-difference-between-shallow-copy-and-deep-copy
    • explain-the-difference-between-the--and--operators
    • explain-the-difference-between-unit-testing-integration-testing-and-end-to-end-testing
    • explain-the-difference-in-hoisting-between-var-let-and-const
    • explain-the-different-states-of-a-promise
    • explain-the-different-ways-the-this-keyword-can-be-bound
    • explain-the-observer-pattern-and-its-use-cases
    • explain-the-purpose-of-the-following-apis-localstorage-sessionstorage-indexeddb
    • provide-some-examples-of-how-currying-and-partial-application-can-be-used
  • scripts

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4568
-4869
lines changed

README.md

Lines changed: 4494 additions & 4718 deletions

data/questions.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"explain-the-difference-between-the--and--operators",
2121
"what-are-the-different-types-of-loops-in-javascript",
2222
"what-is-the-purpose-of-the-break-and-continue-statements",
23-
"explain-the-difference-between--and--operators",
2423
"what-is-the-ternary-operator-and-how-is-it-used",
2524
"what-is-the-difference-between-forin-and-forof-loops",
2625
"how-do-you-access-the-index-of-an-element-in-an-array-during-iteration",
@@ -203,4 +202,4 @@
203202
"what-are-some-tools-and-techniques-for-identifying-security-vulnerabilities-in-javascript-code",
204203
"how-can-you-implement-secure-authentication-and-authorization-in-javascript-applications"
205204
]
206-
}
205+
}

questions/explain-the-concept-of-a-callback-function-in-asynchronous-operations/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-a-microtask-queue/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-caching-and-how-it-can-be-used-to-improve-performance/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-classes-in-es2015-and-how-they-differ-from-constructor-functions/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-code-coverage-and-how-it-can-be-used-to-assess-test-quality/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-content-security-policy-csp-and-how-it-enhances-security/en-US.mdx

Lines changed: 4 additions & 3 deletions

questions/explain-the-concept-of-cross-site-request-forgery-csrf-and-its-mitigation-techniques/en-US.mdx

Lines changed: 2 additions & 3 deletions

questions/explain-the-concept-of-debouncing-and-throttling/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-destructuring-assignment-for-objects-and-arrays/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-error-propagation-in-javascript/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-event-delegation/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-higher-order-functions/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-hoisting-with-regards-to-functions/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-inheritance-in-es2015-classes/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-input-validation-and-its-importance-in-security/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-lazy-loading-and-how-it-can-improve-performance/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-lexical-scoping/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-object-prototypes-and-prototypal-inheritance/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-partial-application/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-prototypal-inheritance-in-javascript/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-scope-in-javascript/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-tagged-templates/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-test-driven-development-tdd/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-the-prototype-pattern/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-the-singleton-pattern/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-the-spread-operator-and-its-uses/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-the-strategy-pattern/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-the-web-socket-api/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-this-binding-in-event-handlers/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-concept-of-tree-shaking-in-module-bundling/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between--and--operators/en-US.mdx

Lines changed: 0 additions & 59 deletions
This file was deleted.

questions/explain-the-difference-between--and--operators/metadata.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

questions/explain-the-difference-between-classical-inheritance-and-prototypal-inheritance/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-commonjs-and-es-modules/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-documentqueryselector-and-documentgetelementbyid/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-dot-notation-and-bracket-notation-for-accessing-object-properties/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-global-scope-function-scope-and-block-scope/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-shallow-copy-and-deep-copy/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-the--and--operators/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-between-unit-testing-integration-testing-and-end-to-end-testing/en-US.mdx

Lines changed: 1 addition & 1 deletion

questions/explain-the-difference-in-hoisting-between-var-let-and-const/en-US.mdx

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)