context
-
The 10 days of JS - Scope & Context - 1Javascript 2020. 5. 15. 15:30
// scope is the biggest source of confusion regarding variables. // context would be the biggest source of confusion regarding objects. // scope has to do with variables and context has to do with objects //scope in action //the topic of scope has to do with where we can access a variable from. // let myName = 'bell' //It works because up on this line(let~) when we are creating the variable we a..