Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Learn with quizes about the JavaScript grammar

kkeeth
October 02, 2018

Learn with quizes about the JavaScript grammar

kkeeth

October 02, 2018
Tweet

More Decks by kkeeth

Other Decks in Programming

Transcript

  1. About me const my_info = { Workplace: ‘Yumemi Inc’, Community:

    ‘Riot.js, Ionic, Dist’, Favorites: ‘CLI made by Node.js’, PokemonGO: ‘TL38’ }
  2. History of JavaScript Quiz about the “scope” Quiz about the

    “closure” Quiz about the “this" Agenda
  3. global local block Variable declared at top level Variables declared

    in functions Variable declared in {}(block) Available from anywhere in the program Can be referenced only in functions Only available within {}(block)