Skip to content

algorithms and data structure in JavaScript - TypeScript

License

Notifications You must be signed in to change notification settings

medesko/ts-js-for-developers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ts-js-for-developers

algorithms and data structure in JavaScript - TypeScript

Installation

npm install -g typescript

TypeScript

After installing typescript, create a .ts file, for example, tsJsLove.ts as given below:

let message: string = 'I love JavaScript and TypeScript'; 
console.log(message); 
// save the file as tsJsLove.ts 

Usage

tsc tsJsLove.ts --target 'es2017' --outDir 'js' && node js/tsJsLove.js
Output should be I love JavaScript and TypeScript

About

algorithms and data structure in JavaScript - TypeScript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published