Meziantou
Member since Dec 2, 2017
- Profile: /members/13670-meziantou.htm
- URL: https://www.meziantou.net
- Comments: 3
Recent Blog Comments By Meziantou
-
Frameworks And Libraries Can Make You A Better JavaScript Programmer
Posted on Jan 4, 2018 at 4:57 PM
Hi, I do agree with you, frameworks and libraries can make you a better (JavaScript or any language) programmer. Nowadays, there are lots of code written by experimented people available on GitHub. It's so valuable! However, the keyword of this post is **curious**. I think this is one of the most... read more »
-
I Love That TypeScript Doesn't Allow Me To Make Incorrect Assumptions About Object Usage
Posted on Dec 4, 2017 at 10:34 AM
@Ben, The strict-null flag is maybe the most useful flag. It helps you detect hundreds or thousands of potential errors in your code before the deployment. I started using it when TypeScript 2.0 was released, and it really helps me to write better code. Other languages, such as C#, are also introdu... read more »
-
I Love That TypeScript Doesn't Allow Me To Make Incorrect Assumptions About Object Usage
Posted on Dec 2, 2017 at 10:53 AM
TypeScript is so nice to detect this kind of error thanks to its powerful type checker. But it also detects many more kind of errors, such as potential typos or null reference exception. I've written a post about the errors the TypeScript compiler can detect: https://www.meziantou.net/2017/11/13/d... read more »