When the execution of additional JavaScript in the Node.js process must wait until a non-JavaScript operation completes
What is Blocking?
This statement executes its statements as long as a specified condition evaluates to true.
What is While?
This Promise method can be executed when a promise is fulfilled or rejected.
What is Promise.then()?
Name if the international body that defines the JavaScript specification.
What is ECMA?
In Node.js, streams are abstract interface for working with ________.
What is streaming data?
Since JavaScript execution in Node.js is single threaded, this term refers to the event loop's capacity to execute JavaScript callback functions after completing other work.
What is Concurrency?
Use this statement to terminate a loop, switch, or in conjunction with a labeled statement.
What is break?
A Promise is in one of these states: pending, fulfilled, or ______.
What is rejected?
Brendan Eich wrote a protoype for JavaScript in this number of days.
What is 10?
The two main types of streams are ______ and ________.
What is readable and writable?
When a method has a synchronous option, it's name is appended by this
What is Sync?
This statement allows a program to evaluate an expression and attempt to match the expression's value to a case label. If a match is found, the program executes the associated statement.
What is switch?
This euphemism for heavily nested asynchronous functions could be considered the opposite of 'promise heaven'.
What is callback hell?
Node.js was initially an implementation of this JavaScript engine.
What is V8?
If you want your stream to operate on JavaScript values other than strings or Buffers, you would set it to be in this mode.
What is object mode?
Node uses this to handle "expensive" tasks. This includes I/O for which an operating system does not provide a non-blocking version, as well as particularly CPU-intensive tasks.
What is the Worker Pool?
This statement creates a loop Iterating over iterable objects (including Array, Map, Set, arguments object and so on), invoking a custom iteration hook with statements to be executed for the value of each distinct property.
What is for..of?
This executes two or more consecutive asynchronous operations, passing the previous step's result to the subsequent operation.
What is a promise chain?
The Mozilla browser was so named because it intended to be the '_____' killer.
What is Mosaic?
Specifying a total number of bytes, the amount of data potentially buffered depends on this option passed into the streams constructor.
What is the highWaterMark?
This blocks the event loop disastrously by potentially taking exponential time, exposing you to REDOS on "evil input".
What is a vulnerable regular expression?
This loop is what allows Node.js to perform non-blocking I/O operations — despite the fact that JavaScript is single-threaded — by offloading operations to the system kernel whenever possible.
What is Event?
This Promise method is tool for running asynchronous operations in parallel that takes multiple Promises and return a single one that resolves when that have all resolved.
What is Promise.all()?
Due to an effort led by Douglas Crockford, this version of ECMAScript was never released.
What is ECMAScript 4?
If a call to stream.write(chunk) returns false, this event will be emitted when it is appropriate to resume writing data to the stream.
What is the 'drain' event?