鈍足ランナーのIT日記

走るのが好きな5流のITエンジニアのブログ。

趣味の範囲は広いけど、どれも中途半端なクソブロガー楽しめるWebアプリを作ってあっと言わせたい。サーバーサイドPerl(Mojolicious)、クライアントサイドVue.js。Arduinoにも触手を伸ばす予定。

forの中のinと単なるinがあるのか・・・

  for(var prop in obj){
  }
  
  // property check
  if ('prop1' in obj){
  }
  // hasOwnProperty(): the inherited properties are not displayed.
  if (obj.hasOwnProperty('prop1')){
  }