Advertisement
njdennis94

Hoisting Tutorial Snippet

Aug 1st, 2018
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. aboutMe()
  2.  
  3. function aboutMe(){
  4.   console.log(name);
  5.   var name = "Denise"
  6.  
  7.   let introduction = () => {
  8.      return `My name is ${name}`
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement