Created
November 13, 2022 20:35
-
-
Save jslnriot/60ac7f60c03d5cba0226e1c86e4105cd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const simpleHash = {} | |
simpleHash[1] = 'first' | |
simpleHash[2] = 'second' | |
simpleHash[3] = 'third' | |
console.log(simpleHash) // prints { '1': 'first', '2': 'second', '3': 'third' } | |
simpleHash[4] = 'fourth' | |
console.log(simpleHash) // prints { '1': 'first', '2': 'second', '3': 'third', '4': 'fourth' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment