码迷,mamicode.com
首页 > 其他好文 > 详细

[TypeScript@2.5] Omit catch error block if not needed

时间:2017-09-06 23:54:08      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:code   rom   syn   err   uga   pre   style   blog   pes   

From TypeScript@2.5, you can omit catch error block.

Before:

try {
  throw new Error(‘whatever‘);
} catch(err) {
   console.log(err)  
}

 

Now:

try {
  throw new Error(‘whatever‘);
} catch {
   console.log("error happened")  
}

 

It is just a syntax sugar, if you are not trying to do error handling

[TypeScript@2.5] Omit catch error block if not needed

标签:code   rom   syn   err   uga   pre   style   blog   pes   

原文地址:http://www.cnblogs.com/Answer1215/p/7487385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!