Skip to content

Commit 52ad453

Browse files
authored
Merge pull request lydiahallie#483 from AbelChrist/master
Fix id-ID translation (22.)
2 parents 9aec65d + 36abf1f commit 52ad453

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

id-ID/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -677,25 +677,25 @@ const sum = eval('10*10+5');
677677

678678
---
679679

680-
###### 22. How long is cool_secret accessible?
680+
###### 22. Sampai berapa lama kah cool_secret dapat diakses?
681681

682682
```javascript
683683
sessionStorage.setItem('cool_secret', 123);
684684
```
685685

686-
- A: Forever, the data doesn't get lost.
687-
- B: When the user closes the tab.
688-
- C: When the user closes the entire browser, not only the tab.
689-
- D: When the user shuts off their computer.
686+
- A: Selamanya, data tersebut tidak akan hilang.
687+
- B: Saat pengguna menutup tab browser.
688+
- C: Saat pengguna menutup seluruh browser, tidak hanya tab.
689+
- D: Saat pengguna mematikan komputernya.
690690

691691
<details><summary><b>Jawaban</b></summary>
692692
<p>
693693

694694
#### Jawaban: B
695695

696-
The data stored in `sessionStorage` is removed after closing the _tab_.
696+
Data yang disimpan di `sessionStorage` akan dihapus setelah menutup _tab_.
697697

698-
If you used `localStorage`, the data would've been there forever, unless for example `localStorage.clear()` is invoked.
698+
Jika anda menggunakan `localStorage`, data tersebut akan tersimpan selamanya, kecuali misalnya _method_ `localStorage.clear()` dipanggil.
699699

700700
</p>
701701
</details>

0 commit comments

Comments
 (0)