Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 2.19 KB

JavaScript.md

File metadata and controls

45 lines (33 loc) · 2.19 KB
  • Explain the difference between var, let and const key words.
  • Could you make sure a const value is garbage collected? Yes, but... Assigning an object or array as a constant means that value will not be able to be garbage collected until that constant’s lexical scope goes away, as the reference to the value can never be unset. That may be desirable, but be careful if it’s not your intent! Read more...
  • Explain Object.assign and possible use cases.
  • Explain Object.freeze and possible use cases.
  • Explain the code below. How many times the createVal function is called?
function createVal(){
  return Math.random();
};

function fun( val =  createVal()){
  // Do something with val...
}

fun();
fun(5);
  • What is the spread operator doing in this function call? Seriously!
doStuff(...args);

With the spread operator we can avoid apply all together and simply call the function with the spread operator. Read more.... Note: although there it looks simpler, I think this is less readable at the moment since more developers are familiar with apply.

{a, b} = {a: 1, b: 2}

{a, b} on the left-hand side is considered a block and not an object literal.

However, ({a, b} = {a: 1, b: 2}) is valid, as is const {a, b} = {a: 1, b: 2}

Your ( ... ) expression needs to be preceded by a semicolon or it may be used to execute a function on the previous line.