• [TypeScript] Thrown values as unknown V4


    Main idea is enforce you to do type checking in catch block, because if you want to get Error stacktrace, the throw value should be an Error type, if doesn't throw Error type, just a string type, you won't get stacktrace.

    Before TS 4.0, thrown values were always considered to be of type any. Now, we can choose to regard it as of type unknown. If you’ve ever found it risky to assume that a messagestacktrace, or name property is on every possible thrown value you encounter in a catch clause, this feature may make help you sleep a little more soundly.

    Difference between throw Error and throw a string:

    Always typing errors as unknown

    try {
      somethingRisky()
    } catch (err: unknown) {
      if (err instanceof Error) {
          console.log(err.stack)
          throw err
      }
      else throw new Error(`${err}`)
    }

    There’s also a useUnknownInCatchVariables compilerOption flag that will make thrown values unknown across your entire project

  • 相关阅读:
    Redis篇
    MySql篇
    Tomcat篇
    JDK篇
    冒泡排序(算法源码)
    堆排序(源码)
    快速排序(递归及非递归算法源码)
    MongoDB 复制
    MongoDB appendix
    服务器端脚本
  • 原文地址:https://www.cnblogs.com/Answer1215/p/16469873.html
Copyright © 2020-2023  润新知