|
1 | 1 |
|
2 | | -# Manuals and specifications |
| 2 | +# Manual dan spesifikasi |
3 | 3 |
|
4 | | -This book is a *tutorial*. It aims to help you gradually learn the language. But once you're familiar with the basics, you'll need other sources. |
| 4 | +Buku ini adalah *tutorial*. Tujuannya membantu kamu memahami bahasa ini pelan-pelan. Tapi sekali kamu akrab dengan dasarnya, kamu butuh sumber lain. |
5 | 5 |
|
6 | 6 |
|
7 | | -## Specification |
| 7 | +## Spesifikasi |
8 | 8 |
|
9 | | -**The ECMA-262 specification** contains the most in-depth, detailed and formalized information about JavaScript. It defines the language. |
| 9 | +**Spesifikasi ECMA-262** berisi informasi format, detil, and mendalam tentang JavaScript. Ia mendefisikan bahasa ini. |
10 | 10 |
|
11 | | -But being that formalized, it's difficult to understand at first. So if you need the most trustworthy source of information about the language details, it's the right place. But it's not for everyday use. |
| 11 | +Tapi selain format, ia sulit dipahami di awal. Jadi jika kamu butuh sumber informasi terpercaya tentang detil bahasa, ini tempat yang tepat. Tapi ini bukan untuk penggunaan harian. |
12 | 12 |
|
13 | | -The latest draft is at <https://tc39.es/ecma262/>. |
| 13 | +Draft terakhir ada di <https://tc39.es/ecma262/>. |
14 | 14 |
|
15 | | -To read about bleeding-edge features, that are not yet widely supported, see proposals at <https://github.com/tc39/proposals>. |
| 15 | +Untuk membaca tentang fitur termutakhir, yang belum didukung luas, lihat proposal di <https://github.com/tc39/proposals>. |
16 | 16 |
|
17 | | -Also, if you're in developing for the browser, then there are other specs covered in the [second part](info:browser-environment) of the tutorial. |
| 17 | +Juga, jika kamu dalam pengembangan untuk peramban, maka ada spek lain yang dibahas di [bagian kedua](info:browser-environment) di tutorial ini. |
18 | 18 |
|
19 | | -## Manuals |
| 19 | +## Manual |
20 | 20 |
|
21 | | -- **MDN (Mozilla) JavaScript Reference** is a manual with examples and other information. It's great to get in-depth information about individual language functions, methods etc. |
| 21 | +- **Referensi JavaScript MDN (Mozilla)** ialah manual dengan informasi dan contoh lain. Di sana bagus untuk mendapat informasi mendalam tentang metode, fungsi bahasa, dll. |
22 | 22 |
|
23 | | - One can find it at <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference>. |
| 23 | + Kamu bisa cari di <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference>. |
24 | 24 |
|
25 | | - Although, it's often best to use an internet search instead. Just use "MDN [term]" in the query, e.g. <https://google.com/search?q=MDN+parseInt> to search for `parseInt` function. |
| 25 | + Meski, sering lebih bagus menggunakan pencarian internet. Pakai "MDN [term]" di query, misal <https://google.com/search?q=MDN+parseInt> untuk mencari fungsi `parseInt`. |
26 | 26 |
|
27 | 27 |
|
28 | | -- **MSDN** – Microsoft manual with a lot of information, including JavaScript (often referrerd to as JScript). If one needs something specific to Internet Explorer, better go there: <http://msdn.microsoft.com/>. |
| 28 | +- **MSDN** – Manual Microsoft dengan banyak informasi, termasuk JavaScript (sering dirujuk sebagai JScript). Jika kamu butuh sesuatu specifik ke Internet Explorer, lebih baik menuju: <http://msdn.microsoft.com/>. |
29 | 29 |
|
30 | | - Also, we can use an internet search with phrases such as "RegExp MSDN" or "RegExp MSDN jscript". |
| 30 | + Juga, kamu bisa menggunakan pencarian internet dengan frasa seperti "RegExp MSDN" atau "RegExp MSDN jscript". |
31 | 31 |
|
32 | | -## Feature support |
| 32 | +## Dukungan fitur |
33 | 33 |
|
34 | | -JavaScript is a developing language, new features get added regularly. |
| 34 | +JavaScript merupakan bahasa berkembang, fitur baru ditambah secara reguler. |
35 | 35 |
|
36 | | -To see their support among browser-based and other engines, see: |
| 36 | +Untuk melihat dukungan mereka pada engine berbasis peramban dan lainnya, lihat: |
37 | 37 |
|
38 | | -- <http://caniuse.com> - per-feature tables of support, e.g. to see which engines support modern cryptography functions: <http://caniuse.com/#feat=cryptography>. |
39 | | -- <https://kangax.github.io/compat-table> - a table with language features and engines that support those or don't support. |
| 38 | +- <http://caniuse.com> - tabel dukungan per-fitur, misal untuk melihat engine mana yang mendukung fungsi kryptografi modern: <http://caniuse.com/#feat=cryptography>. |
| 39 | +- <https://kangax.github.io/compat-table> - tabel dengan fitur dan engine bahasa yang mendukung atau yang tidak mendukung. |
40 | 40 |
|
41 | | -All these resources are useful in real-life development, as they contain valuable information about language details, their support etc. |
| 41 | +Semua sumber ini berguna di pengembangan nyata, karena mereka berisi informasi berharga tentang detil bahasa, dukungan mereka dll. |
42 | 42 |
|
43 | | -Please remember them (or this page) for the cases when you need in-depth information about a particular feature. |
| 43 | +Silakan ingat mereka (atau laman ini) saat kamu butuh informasi mendalam tentang fitur tertentu. |
0 commit comments