Created
August 5, 2022 04:13
-
-
Save kujirahand/2abae453dd21e201f5ce45176d94f404 to your computer and use it in GitHub Desktop.
果物の商品データをJSONCで記述したもの
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
/** | |
* 果物の商品データをJSONCで記述したもの | |
* JSONCのサンプル | |
*/ | |
[ | |
// マンゴー | |
{"名称": "沖縄マンゴー", "値段": 3240, "産地": "沖縄"}, | |
// ミカン | |
{"名称": "愛媛ミカン", "値段": 3200, "産地": "愛媛"}, | |
// 梨 | |
{"名称": "鳥取梨", "値段": 4100, "産地": "鳥取"}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment