Saved Bookmarks
| 1. |
What Are Maps In Go? |
|
Answer» GO provides another important data type map which maps UNIQUE KEYS to values. A key is an object that you use to retrieve a value at a later date. Given a key and a value, you can strore the value in a Map object. After value is STORED, you can retrieve it by using its key. Go provides another important data type map which maps unique keys to values. A key is an object that you use to retrieve a value at a later date. Given a key and a value, you can strore the value in a Map object. After value is stored, you can retrieve it by using its key. |
|