TypeScript 2.4
blogs.msdn.microsoft.com
TypeScript 2.4
1–10 of 52 posts
Re: TypeScript 2.4
#2It's a source of mystery that they didn't realise that was going to be a problem right from the start.
Re: TypeScript 2.4
#3Re: TypeScript 2.4
#4For example.
enum Test { a } let a = Test.a; let b = Test[ 0 ]; // isn't available on the string ones
I wonder why its like that.
Re: TypeScript 2.4
#5I only know a little bit of JavaScript, what's the best way to learn TypeScript? Read Eloquent JavaScript then some TS related stuff? Or is there a TypeScript for Dummies that don't know JS?
If you want the full immersion, then read the entire Handbook: https://www.typescriptlang.org/docs/handbook/basic-types.htm....
Re: TypeScript 2.4
#6I only know a little bit of JavaScript, what's the best way to learn TypeScript? Read Eloquent JavaScript then some TS related stuff? Or is there a TypeScript for Dummies that don't know JS?
Re: TypeScript 2.4
#7This language is getting better and better with each release
Re: TypeScript 2.4
#8I only know a little bit of JavaScript, what's the best way to learn TypeScript? Read Eloquent JavaScript then some TS related stuff? Or is there a TypeScript for Dummies that don't know JS?
I'd recommend doing a similar path; transitioning existing code to TS is IMO a better way to learn it than from scratch. TypeScript Deep Dive is a great resource.
Re: TypeScript 2.4
#9I only know a little bit of JavaScript, what's the best way to learn TypeScript? Read Eloquent JavaScript then some TS related stuff? Or is there a TypeScript for Dummies that don't know JS?