This is the set of APIs and data structures provided to interact with a web page
What is the Document Object Model?
Classes were added in this version of JavaScript
What is ES6?
This is the name of the top-level object in the Node runtime
What is "global"?
This is the name of the first web browser
What is Mosaic?
This is the official name for JavaScript
What is ECMAScript?
This is the data structure returned from document.querySelectorAll()
What is NodeList?
This data structure automatically removes duplicate values
What is a Set?
This entry in package.json allows an NPM module to define command line operations
What is "bin"?
The first version of JavaScript ran in this browser
What is Netscape Navigator
This data format is a subset of JavaScript
What is JSON?
This function can be used to turn any "array-like" object into an actual array
What is Array.from()
0, null, false, undefined, and "" are examples of this type of expression
What is Falsy?
This is alternative to NPM was created in 2016
What is yarn
Before being changed in order to capitalize on the hype of Java, this was the name of the first version of JavaScript
What is LiveScript
This Date method returns the day of the month
What is "getDate()"
This global function can be used to execute a function the next time the browser repaints
What is requestAnimationFrame()
This is a function which is executed at the time of definition
What is an IIFE?
This syntax replaces the CommonJS require() function
What is import?
The term AJAX was used to describe this early method of requesting data from a server
What is Asychronous Java and XML
This API is used to request data from a server
What is the Fetch API?
This event fires when the initial HTML document has been completely loaded and parsed
What is DOMContentLoaded?
This is a template object that an object will inherit its methods and properties from
What is an Object's prototype?
This is the maximum number of bytes a Readable stream will store before ceasing to read from an underlying resource
What is highWaterMark?
This was the the original term for a way of making interactive web pages
What is DHTML?
This API can be used to execute code outside of the main UI rendering loop
What are Web Workers?