javascript Flashcards
how node treat module files
node never process the .js file directly, it wraps the module as a function and pass it to the chrome v8 engine
what’s the global object in node.js
global
what’s the global object in chrome
window; document
naming convention for class
ClassName
same folder path in require; parent folder path in require statement
same folder ./xxx(.js) parent folder ../xxx(.js)
how to load a module
require(‘’)
EMACscript 6 fancy string function is called?
Template String
the node.js built in packages
path os fs http events ( class: EventEmitter; methods: emit & on )
Since events package provides an EventEmitter class (not an instance), what needs to be paid attention when working on the events?
the actual registering event and emit event action need to be based
what makes the function become the special constructor function inside a class defination
give the function name as ‘constructor’, then it will work with the new key word
what the class sytax sugar does
- generating the function that 1) has the name of the class given and 2) coding block as the constructor method - attach all other attributes to the .prototype attribute of the function with class name
is most of the javascript keyword little cap
yes (new, function, class, cnst…)
how to inheriant from another class when defining an class
using ‘extends’ keyword
singular module returning object
module.exports =
is module global?
it is actual a local variable that node.js passed into the wrapped function of the module
how to see the wrapped function of the module
set a syntax error in the very 1st line of a module like ‘var =;’ and then require it somewhere else
how to set async spin over certain time interval
- return a new Promise 2. Inside the promise, define another async function 3. Inside the function, if goal reached, then resolved; if not, use setTimeout to sell the call again. (*** The async function is within the ‘new Promise’, so whenever it resolved, the same promise instance resolved) 4. Call the async function manuallyafter defination
how to set parameter’s default value
constructor ({ keyId, secretKey, paper = true, bucketPct = 0.25 }) { … }
var scope situation
var only socpe to either functional scope or global scope (window or global object)
let and const sope
they scope to the block scope (curly brackets)
what is Hoisting in JS
variable can be used before the definition. (hoisting means moving all declarations to the top of the current scope
what is a primitive type in JS
it is not an object and has no methods
primitive types are immutable, how to approve it
you can not use an string method to alter e.g. toUpperCase the data itself (on the other side, the array method e.g. push can alter the array); the string method can then only manipulate the return value
what is Symbol in JS
Symbols are often used to identify object properties.Often to avoid name clashing between properties, since no symbol is equal to another; No two symbols are the same ‘===’
null vs undefined
null is an object; undefined is a type null can be assigned to variable; undefined appears when nothing assigned to variable
Map vs Object

JS 3 data structues
- Array, list of object
- Map, key-value pair, simplified the historicially used Object
- Set, unquie value of Array list
Date in JS
- number of milisecond since 1970
- new Date() - create a new Date object
- Date.now()
- Date.parse() - parse string date representation
Date - To get Date, Month and Year or Time
let [month, date, year] = new Date().toLocaleDateString(“en-US”).split(“/”) let [hour, minute, second] = new Date().toLocaleTimeString(“en-US”).split(/:| /)
Template String
string text ${expression} string text
Implicity Conversion
Implicit Coercion: Type conversion is done implicitly by JavaScript.
- 12 + “” //Output is “12” as number 12 is converted to string “12”
- “15” * 2 //Output is 30 as string 15 is converted to number 15
- “15” - “11” //Output is 4 as both the strings are converted to number
- undefined + 6 //Output is NaN as undefined could not be converted to number
Explicity Conversion
- Number(“25”) //Output is 25 as “25” string is converted to number 25
- String(25) //Output is “25” as 25 is converted to string “25”
- Boolean(25) //Output is true
*
Comparison Operations in JS
- loose compare: == (only compare value)
- strict compare: === (compare value and type)
- same-level compare: object.is()
spread operator vs. rest operator
‘…’
- Spread Syntax: […iterableObj, ‘4’, ‘five’, 6]
- Rest Syntax: function f(a, b, …theArgs) { // … }
how to get array length
.length
using for loop through an array

using ‘for … of ..’ to loop through the array

using ‘for…in…’ to loop through object

‘while’ loop

‘while’ loop with ‘break’

‘while’ loop with ‘continue’

loop using ‘do.. while…’

what’s the difference b/w ‘do..while..’ and ‘while’
do…while… always run for the first time
‘for.Each…’ to loop through array

why it is better to always come to forEach when looping through array
it is more data object driven
Scope for ‘this’
- if ‘this’ defined inside a method, it always point to the object (not the method itself, but the object it belongs to);
- if ‘this’ defined inside a function, it point to the window/global object
3.
what is the secon parameter of forEach function
thisArgs, value to be used as this inside the first param - the call back function
what is setter and getter in js
- let the method can be accessed like a true property from outside the object

does spread syntax has to be at last?
no, only rest syntax always has to be in the last position; spread syntax can be anywhere in side the parameter passing parenthesis
Destructuring Assignment Syntax

when the curly bracket can be ignore
when usiing ‘if’, ‘for’…
constructor function vs. class
- constructor function is a regular function to be invoked with the ‘new’ keyword
- class has the ‘constructor’ method; also to be instansized with ‘new’ keyword
thumb rule for determin the ‘this’ context:
which one is correct
- this is determined based upon where the function is called
- this is determined based upon where the function is defined
1 is the correct answer
what’s the difference of using .bind() vs. .call() / .apply()
using .bind() to invoke a function create a persistent binding of this context that always connect to the function. so we can not eyeball it when just reading the code and always need to be searched the binding.
This probably should not be recommended
However, the .bind() can be used to fix the callback method missing this context issue
5 binding types tips
- implicit binding
- Explicit binding
- new Binding
- Default Binding
- Callback Binding
- implicit binding - object.func() - bind to whatever left to the dot
- Explicit binding - .call(); .apply(); .bind(); forEach()…
- new Binding - new func()
- Default Binding - func() - bind to global object
- Callback Binding - loosing the implicit binding
how to pass parameters to callback function when using setTimeOut or setTimeInterval
use the 3rd parameter:
setTimeOut( callBackFunc, , args )
iterator signature method and what’s its returning value
- .next()
- { value: xxx, done: true/false }
generator function syntax
function* xxx () {
yield
}
inside generator function, how to delegate to another deeper level generator
yield* generatorFunc()
The yield* expression iterates over the operand and yields each value returned by it.
yield as expression
achieving the goal for 2 way data exchange
Accessing the await-ed value inline (JS)?
async

how to inline invoke (async) function
using grouping operator ( )
The grouping operator ( ) controls the precedence of evaluation in expressions.

npm package.json vs. package-lock.json
https://stackoverflow.com/questions/45052520/do-i-need-both-package-lock-json-and-package-json

node.js working with json file
package fs
function JSON.parse()

deconstructing Assignment
[a, b, …rest] = [10, 20, 30, 40, 50];
const x = [1, 2, 3, 4, 5]; const [y, z] = x;
what happens to the created object if adding attributes to the construction function’s .prototype object
The attribute will NOT be added directly to the created object, but will be attached to its __proto__ chain.
node js package for database access and management
sequelize
what is following statement:
$(function () {
// do stuff
});

.then behavior depends on handler function
what is the term for Node js implementing the async behaviori
Non-blocking I/O
which module helps fs package implement the sync file reading function - fs.readFileSync()
when declaring class, how to define a method attribute
the function keyword can be ignored,
the same applies to async function - only keep async following by the function name is fine
When passing callback function to setTimeOut, what if the target callback function is a method of an instance
Do not pass the function directly as when the callback function invoked, the scope changes.
put the callback function with ‘this.’ inside another wrapper function and pass the wrapper function as the parameter to setTimeOut.

use destructuring in JavaScript function arguments
yes, this is a bit odd but it makes sense. And the deconstructed arguments can be used directly inside the function (even though it looks like a attribute inside a parameter object but it doesn’t need a top level object to be referred to)

using switch…case… statement:
- what is the other option keyword
- must using break
- Special signal to use
- default
- Yes
- :
does await works in .forEach? if not, what is the walk around
No, try to use for… loop
Given the non-blocking I/O design in JS,
what are the issue presents by this architecture?
What are the values brought by Callback Function, Promises, Async Function in different level.
- how to resume the process once the I/O finished - Callback
- having a clear status of the I/O process - Promise’s status
- In case where a blocking I/O is desired - use promise.then() or await
- Disadvange of using callback or promise.then() - callback hell and promise hell
why in node.js, we should always use ‘module.exports = ‘ rather than ‘ exports = ‘ when exporting single object
Because assign value to ‘exports’ directly will change the referenced object it is pointing to but the node js will only export to the object point by module.exports. (They were originally pointing to the same object)
https://stackoverflow.com/questions/7137397/module-exports-vs-exports-in-node-js/26451885#26451885

what’s the differece b/w Reset Parameters and The argument object
- The arguments object is not a real array, while rest parameters are Array instances, meaning methods like sort, map, forEach or pop can be applied on it directly;
- The arguments object has additional functionality specific to itself (like the callee property).
- The …restParam bundles all the extra parameters into a single array, therefore it does not contain any named argument defined before the …restParam. Whereas the arguments object contains all of the parameters – including all of the stuff in the …restParam – unbundled.