Skip to content

javascript/organizing_your_javascript_code/json.md - Turkish Translation #839

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
### Introduction
### Giriş

JSON (JavaScript Object Notation) is a standardized format for structuring data. It is heavily based on the syntax for JavaScript objects. You will often encounter JSON formatted data when working with external servers or APIs - it is essentially the universal format for transmitting data on the web.
JSON (JavaScript Nesne Notasyonu), veri yapılarını yapılandırmak için standartlaştırılmış bir formattır. Temel olarak JavaScript nesneleri için sözdizimine dayanmaktadır. Dış sunucular veya API'lerle çalışırken genellikle JSON formatında veriyle karşılaşacaksınız - web üzerinde veri iletimi için temel formattır.

Fortunately, there isn't much to learn here. We're only including a lesson on it because some formatting rules can cause confusion if you aren't aware of them. Spend 10-15 minutes going through the following resources and you'll be good to go.
Neyse ki, burada öğrenilecek çok şey yok. Bazı biçimlendirme kuralları hakkında bilgi sahibi değilseniz kafa karışıklığına neden olabileceğinden sadece bir ders ekliyoruz. Aşağıdaki kaynaklara 10-15 dakika göz atarsanız tamamen hazır olacaksınız.

### Assignment
### Ödev

<div class="lesson-content__panel" markdown="1">

1. This [JSON MDN tutorial]( https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON) is probably all you need...
2. Read about the 2 JavaScript methods that you'll most often be using when dealing with JSON - [JSON.parse()](https://www.w3schools.com/js/js_json_parse.asp) and [JSON.stringify()](https://www.w3schools.com/js/js_json_stringify.asp).
3. Mis-formatted JSON is a common cause of errors. This [JSON formatter website](https://jsonformatter.curiousconcept.com/) lets you paste in JSON code and will search it for formatting errors.
1. Bu [JSON MDN tutorial]( https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Objects/JSON) muhtemelen ihtiyacınız olan her şeyi içeriyor...
2. JSON ile uğraşırken en sık kullanacağınız 2 JavaScript yöntemi hakkında okuyun - [JSON.parse()](https://www.w3schools.com/js/js_json_parse.asp) ve [JSON.stringify()](https://www.w3schools.com/js/js_json_stringify.asp).
3. Yanlış biçimlendirilmiş JSON, sık karşılaşılan hataların bir nedenidir. Bu [JSON formatter website](https://jsonformatter.curiousconcept.com/) link size JSON kodunu yapıştırma ve biçimlendirme hatalarını arama imkanı sunar.

</div>