エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
CoffeeScript: Using instanceof vs Class.constructor.name
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
CoffeeScript: Using instanceof vs Class.constructor.name
If I have a class: class Haha constructor: (@lolAmount = 1) -> alert @lolAmount And I want to che... If I have a class: class Haha constructor: (@lolAmount = 1) -> alert @lolAmount And I want to check if an object is of the right class, Is it always safe to use constructor.name: haha = new Haha() unless haha.constructor.name is 'Haha' throw Error 'Wrong type' or is it better to use instanceof: haha = new Haha() unless haha instanceof Haha throw Error 'Wrong type' One argument I have for instanceo