Skip to content

Commit

Permalink
Docs: Update dictionary.md (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricosmall authored Dec 29, 2023
1 parent 7b2a25b commit fe73acd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ sidebar_label: 字典
```javascript
let personalInfo = {};

personalInfo.name: 'luckrnx09',
personalInfo.age: 18,
personalInfo.city: '成都'
personalInfo.name = 'luckrnx09',
personalInfo.age = 18,
personalInfo.city = '成都'

console.log(personalInfo);
```
Expand Down

0 comments on commit fe73acd

Please sign in to comment.