ES6 & Node Flashcards
What is a code block? What are some examples of a code block?
Code block = code between curly braces
Examples: function definitions, if-block, else-block, loop body…etc
What does block scope mean?
Means the binding of the variable only applies in the current code-block.
What is the scope of a variable declared with const or let?
variables declared using const and let are block scoped
What is the difference between let and const?
const -> variable can’t be assigned to a different value; variable also has to be given a value at the time it is declared
let -> variable is mutable (aka can be reassigned) and can be declared without initializing (giving it a value)
Why is it possible to .push() a new value into a const variable that points to an Array?
const means that this variable always points to the same reference/location in memory. However the value at that location in memory can change.
The variable declared with const always points at the array but the value of elements in the array can be changed
How should you decide on which type of declaration to use?
Use const whenever possible; if not possible, use let.
in general the scope of a binding should be as specific as possible
What is the syntax for writing a template literal?
String surrounded by backticks; embedded js variables and expressions inside ${ }
What is “string interpolation”?
substituting values into placeholders in a template string
What is destructuring, conceptually?
Syntax shortcut for assigning properties of an object/elements of an array to individual variables.
What is the syntax for Object destructuring?
const { property1: alias1, property2: alias2 } = objName;
What is the syntax for Array destructuring?
const arr = [1, 2, 3]; const [ var1, var2, var3 ] = arr;
How can you tell the difference between destructuring and creating Object/Array literals?
Creating object/array literal -> object/array literal on right side of assignment operator
Destructuring assignment -> things that looks like an object/array literal on left side of assignment operator
What is the syntax for defining an arrow function?
(parameters) => {
functionBody
}
When an arrow function’s body is left without curly braces, what changes in its functionality?
Implicit return
How is the value of this determined within an arrow function?
Determined by the enclosing lexical scope.
What is a CLI?
Command line interface
What is a GUI?
Graphical user interface
What is Node.js?
Javascript that runs outside/independent of browser.
more technically.
What can Node.js be used for?
Pretty much anything since it’s no longer restricted to the browser.
Usually used for building backends of web applications (server-side scripting), command-line tools, automating tasks.
What is a REPL?
Read-Eval(uate)-Print loop; a simple programming environment; it’s a place to test out snippets of the language
When was Node.js created?
2009
What is a computer process?
An application running on your computer
Why should a full stack Web developer know that computer processes exist?
Full stack Web development is based on making multiple processes (backend/server, frontend/client, and database) work together to form one application
What is the process object in a Node.js program?
A global variable in all Node programs ‘that provides information about, and control over, the current Node.js process’.
How do you access the process object in a Node.js program?
It a global variable so you can access it by typing process
What is a JavaScript module?
a .js file
What values are passed into a Node.js module’s local scope?
- exports
- module
- __filename
- __dirname
- require
Give two examples of truly global variables in a Node.js program.
process object, global object, console object…and others
What is the purpose of module.exports in a Node.js module?
Specifies what values/functions of a module should be available to other modules
How do you import functionality into a Node.js module from another Node.js module?
Use the require function
What is the JavaScript Event Loop?
Event loop is the thing that allows js code to look like there is concurrency even though it is single threaded.
It moves tasks between callstack and event queue, and monitors events and tasks for completion.
In browser, it is also in charge of rendering the page and re-rendering it when changes have been made to DOM.
What is the difference between “blocking” and “non-blocking” with respect to how code is executed?
Blocking code prevents the program from doing anything else until its task is finished. When it is executed, it doesn’t leave the callstack until it is complete.
Non-blocking code still lets other code run if it has to wait for something (aka ‘does not pause execution of other functions in the function stack’);
Is is asynchronous.
Gets moved from call stack to event queue by event loop ; then moved back to call stack when it is time to execute call back
What is a directory?
Component of the file system that groups files together; contains references to other files and possibly directories
What is a relative file path?
File path that starts from current directory
What is an absolute file path?
File path always starts from root directory. (aka the start of the hard drive)
What module does Node.js include for manipulating the file system?
The fs module
What method is available in the Node.js fs module for writing data to a file?
writeFile() method
Are file operations using the fs module synchronous or asynchronous?
asynchronous
What is NPM?
A software registry used for sharing/downloading packages.
‘NPM’ also used to refer to the NPM website, and the NPM CLI
The NPM CLI is used to install libraries you want to use in your Node/JavaScript application
What is a package?
a file or directory that is described by a package.json file
How can you create a package.json with npm?
use the ‘npm init’ command in the NPM CLI
What happens when you add a dependency to a package with npm?
It’s added to the package.json and the package’s code is put in the directory node_modules
What is a dependency and how do you add one to a package?
A dependency is code written by someone else that your app uses
(ex. if you write a javascript application that uses jQuery, then your app has jQuery as a dependency
Add a dependency
using the command ‘npm install’ in the NPM CLI
How do you add express to your package dependencies?
npm install express
What Express application method starts the server and binds it to a network PORT?
app.listen()
How do you mount a middleware with an Express application?
app.use() method
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
- request object
- response object
- next object (function)
What is the appropriate Content-Type header for HTTP messages that contain JSON in their bodies?
Content-Type: application/json; charset=utf-8
What is the significance of an HTTP request’s method?
The server handles the requests to the same endpoint differently depending on what the method of the request is.
What does the express.json() middleware do and when would you need it?
It parses the JSON in requests that have JSON in the request body and puts the parsed data at req.body
Use when your server expects to receive JSON data from client
What is Array.prototype.filter useful for?
getting a subset of existing data
eg. picking values from array of objects, searching for value in array
What is Array.prototype.map useful for?
Anytime you want to perform some action on every element of an array and save the results
What is Array.prototype.reduce useful for?
Combining the elements of an array into a single value.
What is “syntactic sugar”?
Syntax whose only purpose is to make something more convenient to use or easier to read
What is the typeof an ES6 class?
function
Describe ES6 class syntax.
class className { constructor(constructorParam) { this.instanceVariable = constructorParam; }
method1() { . . . method2() { } }
What is “refactoring”?
Changing how a piece of functionality/a feature is implemented without changing its functionality
What are the three states a Promise can be in?
- Fulfilled 2. pending 3. rejected
How do you handle the fulfillment of a Promise?
.then() method
How do you handle the rejection of a Promise?
.catch() method