2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【TypeScript】anyとunknownの違い

Posted at

はじめに

TypeScriptは一通り学習し業務でも触れていたのですが深く理解しているかというとそうではないので復習のつもりで記事を投稿いたします。
まずは anyunknown の違いについて。

any, unknown の違い

どちらも型に縛られることなく値を代入可能です。
ただし、unknown型の変数については、
プロパティ参照や関数実行する前に型チェックを行わないとコンパイルは通りません
なので、any型を利用するより安全なコードを書き、実行時エラーを未然に防ぐことができます。

sample01.ts
const a: unknown = 'Who am I?';
const b: any = 'I am any.';

console.log(a.toUpperCase());
console.log(b.toUpperCase());

unknown.ts:5:15 - error TS2339: Property 'toUpperCase' does not exist on type 'unknown'.

5 console.log(a.toUpperCase());
                ~~~~~~~~~~~


Found 1 error in unknown.ts:5
sample02.ts
const a: unknown = 'Who am I?';
const b: any = 'I am any.';

// 型安全であることを確保した上で関数実行
if (typeof a === 'string') {  
  console.log(a.toUpperCase());
}

// any型は型のチェックを入れなくてもコンパイルエラーにならない
console.log(b.toUpperCase()); 
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?