fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,12 @@
---
title: Store Multiple Values in One Variable Using JavaScript Arrays
localeTitle: 使用JavaScript数组在一个变量中存储多个值
---
使用JavaScript数组变量我们可以在一个地方存储多个数据。
你用一个开括号开始一个数组声明,用一个右括号结束它,并在每个条目之间加一个逗号,如下所示:
```
var sandwich = ["peanut butter", "jelly", "bread"]
```
`myArray = [2,'j'];`