簡単ですね。
<script type="text/javascript">
var array = { name: 'ジャパンリアルエステイト投資法人'};
console.log( array.name );
var reit = { name: 'ジャパンリアルエステイト投資法人',
price: '552,000',
rate: 3.28
};
console.log(reit.price)
var reit = { name: 'ジャパンリアルエステイト投資法人',
price: {
investment: 578000,
NAV: 501776
}
};
console.log(reit.price.NAV)
</script>
