learnxinyminutes-docs/ta_in/json-ta.html.markdown

87 lines
4.8 KiB
JSON
Raw Normal View History

---
language: json
2017-08-25 11:29:30 +03:00
filename: learnjson-ta.json
contributors:
- ["Anna Harren", "https://github.com/iirelu"]
- ["Marco Scannadinari", "https://github.com/marcoms"]
- ["himanshu", "https://github.com/himanshu81494"]
translators:
- ["Rasendran Kirushan", "https://github.com/kirushanr"]
lang: ta-in
---
ி ி ி .
Learn X in Y Minutes ி ி ி.
ி ி ி (Comments) , ி
ிி C - style ி (`//`, `/* */`) குறிப்புகளை இட முடியும்.
ி ி(interpreter) ி (comments)ி
ி ிி ( ி (array) ி
ி (object) ி /( last property) ி )
ி ி ி ி ி ி .\
100% ி ி ி
ி ி ி ி .
ி : (string), (int),ி ( ிி ),
ி (array ),ி (null ), (object).
ி ி ி (browsers):
Firefox(Mozilla) 3.5, Internet Explorer 8, Chrome, Opera 10, Safari 4.
ி (filetype) ".json " .
MIME "application/json" .
ி ி
.
ி
```json
{
2015-10-18 09:05:38 +03:00
"key": "ஒரு சாவிக்கு ஒரு பெறுமதி உள்ளது ",
2015-10-18 09:05:38 +03:00
"keys": "சாவிகள் , மற்றும் பெறுமானங்கள் மேற்கோள் குறிக்குள் இடல் வேண்டும்",
"numbers": 0,
2015-10-18 09:05:38 +03:00
"strings": "Hellø, wørld. எல்லாவகையான unicode உம் அனுமதிக்கப்படும், அத்துடன் \"escaping\".",
"has bools?": true,
"nothingness": null,
"big number": 1.2e+100,
"objects": {
2015-10-18 09:05:38 +03:00
"comment": "பெரும்பாலான கட்டமைப்புகள் objects இல் இருந்தே வருகின்றன",
2015-10-18 09:05:38 +03:00
"array": [0, 1, 2, 3, "array யானது எல்லாவகையான பெறுமானங்களையும் கொண்டிருக்கும்", 5],
"another object": {
2015-10-18 09:05:38 +03:00
"comment": "இவை ஒன்றுக்குள் இன்னொன்றை எழுத முடியும்"
}
},
"silliness": [
{
2015-10-18 09:05:38 +03:00
"sources of potassium": ["வாழைபழம்"]
},
[
[1, 0, 0, 0],
[0, 1, 0, 0],
[0, 0, 1, "neo"],
[0, 0, 0, 1]
]
],
"alternative style": {
2015-10-18 09:05:38 +03:00
"comment": "இதை பார்க்கவும்"
, "comma position": "doesn't matter - as long as it's before the value, then it's valid"
, "another comment": "how nice"
},
2015-10-18 09:05:38 +03:00
"that was short": "நீங்கள் ஜேசன் பற்றி யாவற்றையும் கற்றுள்ளீர்கள்"
}
```