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

JavaScript's new 'old school' programming - Let's TypeScript!

JavaScript's new 'old school' programming - Let's TypeScript!

This presentation was done at FrontConf conference in Munich, Germany. There was live coding as part of the presentation, but the main topics that were covered are specified in the deck.

Srushtika Neelakantam

December 09, 2017
Tweet

More Decks by Srushtika Neelakantam

Other Decks in Technology

Transcript

  1. Srushtikas-Air:Downloads srushtika$ node hello.js /Users/srushtika/Downloads/hello.js:2 console.log(customer_name.toLowerString()) ^ TypeError: customer_name.toLowerString is

    not a function at Object.<anonymous> (/Users/srushtika/Downloads/hello.js:2:18) at Module._compile (module.js:398:26) at Object.Module._extensions..js (module.js:405:10) at Module.load (module.js:344:32) at Function.Module._load (module.js:301:12) at Function.Module.runMain (module.js:430:10) at startup (node.js:141:18) at node.js:980:3 @Srushtika | FrontConf Munich ‘17
  2. Srushtikas-Air:Downloads srushtika$ node hello.js /Users/srushtika/Downloads/hello.js:2 console.log(customer_name.toLowerString()) ^ TypeError: customer_name.toLowerString is

    not a function at Object.<anonymous> (/Users/srushtika/Downloads/hello.js:2:18) at Module._compile (module.js:398:26) at Object.Module._extensions..js (module.js:405:10) at Module.load (module.js:344:32) at Function.Module._load (module.js:301:12) at Function.Module.runMain (module.js:430:10) at startup (node.js:141:18) at node.js:980:3 var customer_name = 222 console.log(customer_name.toLowerString()) @Srushtika | FrontConf Munich ‘17