logged out
Dark Mode
Show all answers
About
All
OOP
NB
Arrays
Functions
Acronyms
Objects
Data Structures
Networking
Database
CSS
test
test2
Basics
Reveal answer.
What is bundling?
id:97
Bundle JS bundling is an optimization technique used to reduce the number of server requests for JS files. Bundling accomplishes this by merging multiple JS files together into one file to reduce the number of page requests.
Networking
Reveal answer.
What is netstat?
id:160
Netstat is a cli tool which is used to display current network connectios and port activity on your computer.
test
Reveal answer.
What are the benefits of using a switch statement?
id:145
The benefit of a switch statement is that the expression is only evaluated once. as opposed to an if statement.
Reveal answer.
What is memoization?
id:23
Memoization is the storing of a function's return value, so if the same parameters are passed again then the function does not need to recompute the result. Although memoization saves time, it uses more memory.
Functions
Reveal answer.
Benefits of function declaration Vs function expression?
id:45
Function expressions do not pollute the global space. Function declarations provide more detail and context for error messages or debugging. Function declarations are used for recursion. Function expressions can be passed as an argument to another function, but function declarations can not.
Acronyms
Reveal answer.
What is JAM stack?
id:91
Javascript + API + Markup
Reveal answer.
What is string interpolation?
id:161
String interpolation is replacing placeholders with values in a string literal, using template literals.
Reveal answer.
What is implicit type conversion?
id:2
Implicit type conversion is the automatic conversion of value from one data type to another.
Reveal answer.
What is oop?
id:25
OOP is a programming paradigm which provides an easily comprehensible method for modeling complicated systems of real world data into manageable software solutions. paradigm - A pattern or model.
CSS
Reveal answer.
Difference between a NodeList and HTMLCollection?
id:69
HTMLCollection only contains element nodes. A NodeList can contain any node type. HTML collections must be converted to an array using .from() before iteration.