型の比較

型を確かめる - instanceof

 import { Bear } from './bear.model'; 
 
 const bear = new Bear(3);
 
 if (bear instanceof Bear) {
     console.log("OK1");
 }
 
 // if (typeof bear === Bear) { // typeofでは動かない
 //     console.log("OK2");
 // }

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS