私はより読みやすい形で次のことをどのように行うのですか?:問題のオブジェクトは、複数のプロパティだけで、B、CC、およびdを有すること比較二つのオブジェクト
if (nextProps.a !== this.props.a ||
nextProps.b !== this.props.b ||
nextProps.cc !== this.props.cc ||
nextProps.d !== this.props.d){
}
注けど私はこれらのプロパティだけの比較をしたいです。私はES6を使用しています。