es6 Flashcards
What is a code block? What are some examples of a code block?
i code block is whatever inside {}, functions, if conditions and loops all have code blocks
What does block scope mean?
it means that its scope only to whatever is inside the curly braces
What is the scope of a variable declared with const or let?
its scope to only inside the code block
What is the difference between let and const?
let is changeable but const is not
Why is it possible to .push() a new value into a const variable that points to an Array?
because we are pushing elements to the array but we are not reassigning the array.
How should you decide on which type of declaration to use?
let is usually used on variables that will have their values changed or reassigned. const is used for objects or arrays or values that will stay consistent throughout the function
What is the syntax for writing a template literal?
the syntax is backticks ` `
What is “string interpolation”?
its embedding variables into a string and getting the results of it
What is destructuring, conceptually?
taking values from properties and assigning it to a different variables
What is the syntax for Object destructuring?
const {} = object
What is the syntax for Array destructuring?
const [] = array
How can you tell the difference between destructuring and creating Object/Array literals?
an object will have {} and an array will have []
What is the syntax for defining an arrow function?
() => {
}
When an arrow function’s body is left without curly braces, what changes in its functionality?
it will return
How is the value of this determined within an arrow function?
a normal function will create its own content for this but the arrow function will inherit it
What is a CLI?
command-line interface
What is a GUI?
graphical-user interface
man
man gives us the option to view what a command name is a synopsis of the command and a description of what the command does
cat
it concatenates files and prints it
ls
the ls command gives us a list of our files or list directory contents
pwd
it prints the name of the current or working directory
echo
it displays a line of text
touch
change file timestamp
mkdir
it makes directories
mv
it moves files or renames them
rm
it removes files or directories
cp
copy files and directories
What is Node.js?
As an asynchronous event-driven JavaScript runtime, Node.js is designed to build scalable network applications.
What can Node.js be used for?
for handling back end server requests
What is a REPL?
an interactive shell that processes Node. js expressions
When was Node.js created?
it was created May 27, 2009
What back-end languages have you heard of?
java
what is a directory?
a folder on our hard drive that holds files
what is a relative file path?
internal path in same directory file path relative to where you’re currently at
what is an absolute file path?
the full file path to get to a specific file/folder
what module does node.js includes for manipulating the file system
fs module
What method is available in the Node.js fs module for writing data to a file?
fs.writefile
Are file operations using the fs module synchronous or asynchronous?
asynchronous
What is a client?
clients are devices that request service from the server
What is a server?
A server is a computer program or device that provides a service to another computer program and its user
Which HTTP method does a browser issue to a web server when you visit a URL?
GET
What is on the first line of an HTTP request message?
the method the target and the version
What is on the first line of an HTTP response message?
the status line
What are HTTP headers?
let the client and the server pass additional information with an HTTP request or response
Is a body required for a valid HTTP message?
no
What is NPM?
it’s open-source for sharing and borrowing packages
What is a package?
is a directory with one or more files in them
How can you create a package.json with npm?
by using the command npm init -y
What is a dependency and how do you add one to a package?
dependencies are packages that are required by the application in production, and to add one to the package we run the command npm install
What happens when you add a dependency to a package with npm?
it installs to the directory we are working on
How do you add express to your package dependencies?
by using the command npm install express
What Express application method starts the server and binds it to a network PORT?
the listen method
How do you mount a middleware with an Express application?
by using the send method
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
req and res
What is the appropriate Content-Type header for HTTP messages that contain JSON in their bodies?
application/json; charset=utf-8
What is Array.prototype.filter useful for?
filtering the array
What is Array.prototype.map useful for?
creating a new version of the array
What is “syntactic sugar”?
its designed to make the code easier to read
What is the typeof an ES6 class?
function
Describe ES6 class syntax.
class keyword and the constructor
What is “refactoring”?
restructuring the code without changing its behavior
What does express.static() return?
a function
What is the local __dirname variable in a Node.js module?
a dirname gives us the directory name
What does the join() method of Node’s path module do?
it joins the path together